import com.otherwise.jurtle.*;

public class FlowDemo extends Turtle
{

    
    public void runTurtle()
    {
        Console.println("Here I am");
        goThere();
        Console.println("Now I'm here again");
    }
    
    
    private void goThere()
    {
        Console.println("Now I'm there");
        
    }


}
