/** 
 * The HelloWorldApp class implements an application that
 * simply displays "Hello World!" to the standard output.
 */
class MyHelloWorld {
    public static void hello() {
        System.out.println("Hello World!"); //Display the string.
    }
    public static void main(String[] args) {
        hello();
        System.out.println("Hello! This is Andreas."); //Display the string.
    }
}
