Klasse: Hello World Programm
Das Hello World Programm ist meist das erste Programm beim Erlernen einer neuen Programmiersprache. Der Begriff geht auf Brian Kernighan (1974) zurück.
class Main {
public static void main (String[] args) {
System.out.println("Hello World!");
}
}public static void
main
(String[] args) {
Element aus Methode
Beschreibung
Last updated