diff --git a/src/main.d b/src/main.d new file mode 100644 index 0000000..6f84c44 --- /dev/null +++ b/src/main.d @@ -0,0 +1,6 @@ +import std.stdio; + +int main(string[] args) +{ + return 0; +} diff --git a/src/pegp/main.d b/src/pegp/main.d deleted file mode 100644 index 6b50242..0000000 --- a/src/pegp/main.d +++ /dev/null @@ -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; -}