Main is in SolverMain.java
This commit is contained in:
parent
4879795aa5
commit
808ba05448
2 changed files with 7 additions and 14 deletions
|
@ -1,14 +0,0 @@
|
||||||
/*
|
|
||||||
* 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());
|
|
||||||
}
|
|
||||||
}
|
|
7
app/src/main/java/sudoku/SolverMain.java
Normal file
7
app/src/main/java/sudoku/SolverMain.java
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
package sudoku;
|
||||||
|
|
||||||
|
public class SolverMain {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Hello world!");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue