/*
 * The HelloWorld class implements an application that
 * simply displays "Hello World!" to the standard output. 
 */

class HelloWorld { 
    public static void main(String[] args) {
	System.out.println("Hallo Welt!");	// Display the string
    } 
}
