/**
 *  This is the Hello World program that is part of Lesson 2.
 */

import com.otherwise.jurtle.*;

public class HelloWorld extends Turtle
{

    public void runTurtle()
    {
        // Print the message to the console.
        Console.println("Hello world!");
    }

}
