package class6_1_ObjectOrientedProgramming; public class DragsterDriver { public static void main(String[] args) { Dragster red; red = new Dragster(); red.setVelocityMetersPerSecond(200); red.stepForward(10); double positionMeters = red.getPositionMeters(); System.out.println("The position is:" + positionMeters + " meters from the start."); // Should print 2000 meters from the start. } }