feat: setup gradle pour lancer l'app et les test, ajout des commandes dans le README.md

This commit is contained in:
2024-12-25 11:35:09 +01:00
parent 197c4a3e35
commit 6bf0402ed7
14 changed files with 473 additions and 5 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());
}
}