package Lesson2; import kareltherobot.*; public class Activity1 implements Directions { public static void main(String[] args) { World.setDelay(1); World.setVisible(); UrRobot alphaBot = new UrRobot(1,1,North,1000); //Starts at the Origin for(int index = 0; index<1000; index++) //Places 1000 beepers { alphaBot.putBeeper(); } alphaBot.move(); } }