SudokuSolver/app/src/main/java/sudoku/App.java
2023-12-05 12:39:42 +01:00

14 lines
287 B
Java

/*
* 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());
}
}