18 lines
355 B
Java
18 lines
355 B
Java
/*
|
|
* This Java source file was generated by the Gradle 'init' task.
|
|
*/
|
|
package sudoku;
|
|
|
|
import sudoku.io.ConsoleInterface;
|
|
|
|
public class Main {
|
|
public String getGreeting() {
|
|
return "Hello World!";
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
ConsoleInterface console = new ConsoleInterface();
|
|
console.start();
|
|
}
|
|
}
|