/** * Informatik II - FS2009
* Uebungsserie 0, Aufgabe 1
* * This program outputs the "Hello World!" string on the console * * @author Philipp Bolliger */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } }