import com.otherwise.jurtle.*;

public class Box extends Turtle
{

    public void runTurtle()
    {
        forward(100);
        right(90);
        
        forward(100);
        right(90);
        
        forward(100);
        right(90);
        
        forward(100);
        right(90);
        
        hideTurtle();
    }

}

