/**
 * A hello world program.
 * @version 1.0
 * @author Kristian Torp torp@cs.auc.dk
 */
public class HelloWorld {
    /** The main method */
    public static void main(String[] args) {
        // just write some stuff
        System.out.println("Hello World");
    }
}
