import becker.robots.*;

public class RobotThatCanTurnRight extends Robot
{
    RobotThatCanTurnRightSlightlyDifferentName(City c, int ave, int st, int dir, int num)
    {
        super(c, st, ave, dir, num);
    }
    
    public void turnRight()
    {
        this.turnLeft();
        this.turnLeft()
        this.turnLeft();
    }
}

public class ICE_03_01_CompileErrors extends Object
{
   public static void main(String[] args)
   {   
        City toronto = new City();
        RobotThatCanTurnRight bob = new RobotThatCanTurnRight(toronto, 3, 0, Directions.EAST, 0);
        Thing theThing = new Thing(toronto, 3 2);
        Wall oops new Wall(toronto, 3, 1, Direction.EAST);
        new CityFrame(toronto);
        
		
		// Bob should move over to the Thing, and end up in the 
		// same intersection as the Thing.
        bob.turnRight;
        bob.move;
        bob.turnLeft();
        bob.move();
        bob.move();
        bob.turnLeft();
        bob.move()
   }
}
