/** <B>Grundlagen der Informatik</B><BR>
 *  Programm "Hello World"
 *  @version 1.0
 *  @author Thomas Walter, FH KL
 */
public class Hello {

    public static void main(String args[]) {
        System.out.println("Hello World!");  // Ausgabe von 
                                             // "Hello World!"

    }

}
