Initial, plain Gradle Java application

This commit is contained in:
Imbus 2023-12-05 12:39:42 +01:00
commit fcc0acb7e8
11 changed files with 457 additions and 0 deletions

View file

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