Move main module to src/main.d.
This commit is contained in:
parent
03d6f4b55d
commit
1b23945b0d
6
src/main.d
Normal file
6
src/main.d
Normal file
@ -0,0 +1,6 @@
|
||||
import std.stdio;
|
||||
|
||||
int main(string[] args)
|
||||
{
|
||||
return 0;
|
||||
}
|
@ -1,10 +0,0 @@
|
||||
module pegp.main;
|
||||
import std.stdio;
|
||||
import pegp.board;
|
||||
|
||||
int main(string[] args)
|
||||
{
|
||||
Board s = new Board(3);
|
||||
writeln("Peg Puzzle! Position: ", Board.Position(2, 0));
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user