feat: first commit

This commit is contained in:
Morph01
2025-05-13 10:38:41 +02:00
parent 47908588e5
commit b2649c364b
15 changed files with 656 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
/*
* This source file was generated by the Gradle 'init' task
*/
package org;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}