package Lesson2Activity1; import kareltherobot.Directions; import kareltherobot.UrRobot; import kareltherobot.World; public class L2A1_Main implements Directions { public static void main(String[] args) { World.setDelay(5); World.setVisible(); UrRobot thrix = new UrRobot(1, 1, Directions.North, -1); for (int i = 0; i < 1000; i++){ // Loop 1000 times thrix.putBeeper(); //Place beeper } thrix.move(); //Move out of the way thrix.move(); thrix.move(); } }