import becker.robots.*;


public class Nested_If extends Object
{
   public static void main(String[] args)
   { 
      City toronto = new City();
      Robot karel = new Robot(toronto, 3, 0, Direction.EAST, 0);
		
		int counter = 0;
		while( counter < 5 )
		{
			new Thing(toronto, 3, 3 + counter); // create a new Thing
			counter = counter + 1;
		}
      Wall oops = new Wall(toronto, 3, 9, Direction.EAST);
        
   }
}


