/** * Class for making a simple drawing with Turtles * * @author Pat Troy: troy AT uic DOT edu */ import java.util.*; public class MyTurtleTest { public static void main(String[] args) { World world = new World(false); Turtle turtle1 = new Turtle(world); // Do some simple operations turtle1.forward(100); turtle1.turn (90); turtle1.forward(100); world.show(); } }