This commit is contained in:
Curt Spark 2024-09-03 15:59:22 +01:00
commit 020b327e3c
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.class

5
main.java Normal file
View File

@ -0,0 +1,5 @@
class Main {
public static void main(String []args) {
System.out.println("Hello world!");
}
};