001    /**
002     * Exercise 2.1 the famous hello world example
003     * 
004     * @author Kristian Torp, torp (at) cs (dot) aau (dot) dk
005     * @version 1.0
006     */
007    public class Exercise2_1 {
008            /**
009             * The main method. Where all Java programs start!
010             */
011            public static void main(String[] args) {
012                    System.out.println("Hello World");
013            }
014    }