/**
 *  This fie is used for the Exercises in this lesson.  Try to 
 *  predict the program's output without running the turtle.
 */
 
import com.otherwise.jurtle.*;

public class FlowExercise extends Turtle
{

    
    public void methodOne()
    {
        Console.println("1");
    }
    
    public void methodTwo()
    {
        methodThree();
        Console.println("2");
    }
    
    public void methodThree()
    {
        Console.println("3");
        methodOne();
    }
    
    public void runTurtle()
    {
        methodOne();
        methodTwo();
    }
    
    


}
