BetterTurtle - Turtle Methods

Below are some methods you can use with your Turtle

joe.move(45,20);
The Turtle turns 45 degrees to its left and then walks 20 little Turtle steps, without leaving any marks.

joe. paint(90,30);
The Turtle turns 90 degrees to its left and then walks 30 little Turtle steps, dragging its paintbrush behind it.

joe.swingAround(100);
Turtle puts the paintbrush on a rope and swings it around drawing a circle with a radius of 100. The turtle is in the center of the circle.