import chess.*;//GEN-BEGIN:header
import java.awt.*;

/**
 * HiTurtleApp.java
 *
 * Created on Jun 13, 2007, 2:23:05 PM by G0706_CKOLWE
 */
public class HiTurtleApp {
    public void run() {//GEN-END:header
        Screen myscreen= Chess.newScreen();
        Turtle tim= myscreen.newTurtle();

        // Here you go!
        tim.slow();
        String username;
        
        username= Chess.readString( "What is your name?" );
        Chess.report( "Hello, " + username );
        Chess.report( "If you follow directions then your computer will not explode  ");
        Chess.report( "just sit there and don't touch a thing" );
        Chess.report( "please wait a few seconds for the turtle" );
        Chess.sleep(2000);
        tim.right(90);
        tim.text( username );
        

    } //run//GEN-BEGIN:footer

    public static void main(String[] args) {
       new HiTurtleApp().run();
    } //main
    
} //class//GEN-END:footer
