package examples;

import chess.Chess;
import chess.Screen;
import chess.Turtle;

public class TurtleExcerciseTwo {
        
    public static void main(String[] args) {
        /* here you go */
        Screen myScreen= Chess.newScreen();
        Turtle tim= myScreen.newTurtle();        
        
        String s= Chess.readString("Enter your name: ");
        int angle= Chess.readInt("Enter the angle: ");
        
        tim.right( angle );
        
        tim.setFontSize(24);
        
        tim.text(s);
        tim.right(90);
        tim.text(s);
        tim.right(90);
        tim.text(s);
        tim.right(90);
        tim.text(s);
        tim.right(90);
        
        
        
        /* two braces below */
    }    
}
