Robot

Know how to create a Robot and write code to draw a pattern using the Robot.

The League has a Robot that can draw patterns with its pen. However, before you can give a Robot instructions, you have to create a Robot and give it a name:
Robot rob = new Robot();
Now you can give the Robot instructions. Here is a selection:
rob.setSpeed(100);
rob.penDown();
rob.move(100);
rob.turn(90);