Compare commits

...

2 Commits

Author SHA1 Message Date
Nils Händler 1cdf9a78a9 feat: Add new feature 2025-05-14 13:59:39 +02:00
Nils Händler 94b5b7f85c feat: Add Main.java 2025-05-14 13:47:36 +02:00
2 changed files with 12 additions and 0 deletions

5
Main.java 100644
View File

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

7
NewFeature.java 100644
View File

@ -0,0 +1,7 @@
public class NewFeature {
private String featureName;
public String getFeature() {
return this.featureName;
}
}