simple-hello-world - Source
Source code for simple-hello-world
Verzeichnis-Struktur
1
2
3
4
5
| simple-hello-world
├── src
│ └── Main.java
├── .gitignore
└── README.md
|
Dateien in simple-hello-world
.gitignore
1
2
3
4
5
| *.iml
.idea/
out/
target/
build/
|
README.md
Not able to display content!
src
Main.java
1
2
3
4
5
6
7
8
9
10
| /**
* Schau Dir das Programm an und versuche es zum Laufen zu bringen. Versuche, ein paar kleine Änderungen am Programm
* vorzunehmen.
*/
public class Main {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
|
Zuletzt geändert July 17, 2025:
Fix prettier (781a4eb64)