Counting Loops: Picking up things
THIS DOES NOT WORK!!!

DIRECTIONS:

Construct a working program by dragging & dropping lines from the left to the right. You'll need to change the order of the lines and you'll need to adjust the indentation correctly.

You should have the robot move three steps forward.

import becker.robots.*;

public class CountingLoops_Parsons_1 extends Object
{
    public static void main(String[] args)
    {
        City wallville = new City(10, 10);
        Robot rob = new Robot(wallville, 7, 0, Direction.EAST, 0);

      // FIX THIS PART!!!

    }
}

Check your work by clicking on the button labeled "Get Feedback" at the bottom of this page.