package L2A2; import kareltherobot.Directions; import kareltherobot.UrRobot; import kareltherobot.World; public class L2A2_Main { public static void main(String[] args) { World.setDelay(1); World.setVisible(); UrRobot thrix = new UrRobot(1, 1, Directions.North, -1); for (int i = 0; i < 5; i++) { for (int v = 0; v < 100; v++) { thrix.putBeeper(); } thrix.move(); } thrix.turnLeft(); thrix.turnLeft(); thrix.turnLeft(); thrix.move(); for (int i = 0; i < 5; i++) { for (int v = 0; v < 100; v++) { thrix.putBeeper(); } thrix.move(); } } }