import chess.*;//GEN-BEGIN:header

/**
 * Shawn.java
 *
 * Created on Jun 13, 2007, 3:28:51 PM by G0706_CKOLWE
 */
public class Shawn {
    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?" );

        
        Sprite sam= myscreen.newSprite("/Sprites/aliens.jpg", 100, 200 );
      
        tim.left(90);
        tim.penUp();
        tim.forward(50);
        
        
      tim.right(180);
        tim.text("i will take over the world with my budy");
        tim.right(90);tim.penUp();
        tim.forward(50);tim.penUp();tim.right(90);
        tim.forward(75);
        tim.left(180);
         tim.text("first on our list " + username);
        tim.left(180);
        tim.penUp();
        tim.forward(150);
        
        

    } //run//GEN-BEGIN:footer

    public static void main(String[] args) {
       new Shawn().run();
    } //main
    
} //class//GEN-END:footer
