Move main module to src/main.d.

This commit is contained in:
Josh Holtrop 2021-02-27 11:45:19 -05:00
parent 03d6f4b55d
commit 1b23945b0d
2 changed files with 6 additions and 10 deletions

6
src/main.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio;
int main(string[] args)
{
return 0;
}

View File

@ -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;
}