added new feature

main
el_loco 2025-05-14 10:21:05 +02:00
parent 40538b9a91
commit 5d1d6b9680
2 changed files with 12 additions and 0 deletions

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;
}
}