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