package Lesson2; import kareltherobot.*; public class Activity2 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 runs = 0; runs< 10; runs++) //Makes 10 stacks { for(int index = 0; index<100; index++) // Puts 100 beepers { alphaBot.putBeeper(); } if (runs < 9) //Prevents Karel from moving off the screen { alphaBot.move(); } } for(int y = 0; y < 3; y++) { alphaBot.turnLeft(); //turns the robot 90 degrees to the right } alphaBot.move(); } }