import turtles.*; public class DrawLine2 extends TurtleProgram { public void run() { Turtle yertle; yertle = new Turtle(50, 120); // draw bottom line yertle.forward(100); yertle.left(100); yertle.forward(100); yertle.left(80); yertle.forward(100); yertle.left(100); yertle.forward(100); yertle.hide(); } }