import chess.*;//GEN-BEGIN:header
import java.awt.*;

/**
 * MyTurtleApp.java
 *
 * Created on Jun 13, 2007, 1:13:30 PM by G0706_CKOLWE
 */
public class MyTurtleApp {
    public void run() {//GEN-END:header
        Screen myscreen= Chess.newScreen();
        Turtle tim= myscreen.newTurtle();

        // Here you go!
         String username;
        
        username= Chess.readString( "What is your name?" );

        
        
Chess.sleep(100);  tim.circle(30);

Chess.sleep(100);       tim.home();

Chess.sleep(100);        tim.back(65);

Chess.sleep(100);      tim.right(135);

Chess.sleep(100); tim.forward(40);

Chess.sleep(100);         tim.back(40);

Chess.sleep(100);    tim.right(90);

Chess.sleep(100);          tim.forward(40);

Chess.sleep(100);          tim.back(40);

Chess.sleep(100);          tim.right(135);

Chess.sleep(100);          tim.forward(65);

Chess.sleep(100);        tim.left(135);

Chess.sleep(100);        tim.forward(38);

Chess.sleep(100);         tim.back(38);

Chess.sleep(100);       tim.left(90);

Chess.sleep(100);       tim.forward(38);

Chess.sleep(100);       tim.home();

Chess.sleep(100);       tim.circle(30);

tim.right(90);
        tim.text("            hi I'm " + username );

Chess.report( "this is you as a stick person" );
        
    } //run//GEN-BEGIN:footer

    public static void main(String[] args) {
       new MyTurtleApp().run();
    } //main
    
} //class//GEN-END:footer
