/**
   @Author:
      Date: Sep 17, 2003
   Teacher:
       Lab:
      Misc:
  */

import kareltherobot.*;


public class CH3hw implements Directions
{
    public static void main(String args[])  {
        ur_Robot Karel = new ur_Robot(2, 1, East, 0); 
        
        
         

        Karel.turnOff();  
    } 

    static {
        World.reset(); 
        World.readWorld("first.wld"); //put the file in the classes folder within this project's folder
        World.setDelay(10);  
        World.setVisible(true);
    }
}
