feat: Gib HelloWorld aus

featureAddition
hummel 2024-06-14 11:45:53 +02:00
parent e20731a706
commit 423283c511
2 changed files with 11 additions and 0 deletions

2
GitBestPractices/.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
/.classpath
/.project

View File

@ -0,0 +1,9 @@
package de.hs_mannheim.informatik.gitdemo;
public class Main {
public static void main(String[] args) {
System.out.println("Hallo Welt!");
}
}