Jetzt ist es so weit wir schreiben unser erstes Java Programm. Um Javaprogramme auszuführen nutzen wir einen Onlinecompiler ich neheme mal den Browxy Compiler den findest du unter www.browxy.com. Es macht Sinn sich sich zu Registrieren dann kannst du deinen Code Speichern veröffendlichen oder wenn du probleme hast dir im Forum Rat zu holen.
English:
Now it's time to write our first Java program. To run Java programs we use an online compiler I take a look at the Browxy Compiler which you can find at www.browxy.com. It makes sense to register yourself then you can publish your code saving or if you have problems to get advice in the forum.

public class hallowelt {
public static void main (String[] args) {
System.out.println("Hallo Welt"); //Mit dieser zeile gibt das Programm die Zeile Hallo Welt aus
}
}
English:
public class hallowelt {
public static void main (String[] args) {
System.out.println("Hello World"); //With this line the program displays the line Hello World
}
}