import chess.Chess;
import chess.Screen;
import chess.Turtle;

public class TurtleExcerciseOne {
        
    public static void main(String[] args) {
        /* here you go */
        Screen myScreen= Chess.newScreen();
        Turtle tim= myScreen.newTurtle();
        
        tim.slow();
        
        tim.forward(40);
        tim.right(90);
        tim.forward(40);
        tim.right(90);
        tim.forward(40);
        tim.right(90);
        tim.forward(40);
        tim.right(180);        
        tim.penUp();
        tim.forward(50);
                
        tim.text("Box");
        
        /* two braces below */        
    }
    
}
