public class HelloWorld { public static void main (String[] args) { // Kommentar int geld = 20; int preis = 3; int anzahl = 2; while (anzahl>0) { geld = geld - preis; anzahl = anzahl - 1; } boolean etwas = 2 > 3; // darum false! System.out.println("Hello "+etwas); } }