

/*Aufruf z.B mit: java HalloWelt*/

public class HalloWelt {                  // Definition der Klasse: HalloWelt
 public static void main(String args[])   // main-Methode der Klasse
   {
   System.out.println("Hallo Welt !!");   // Ausgabe des Strings "Hallo Welt !!"
   }
}
