From 1b23945b0d9b1c786111ac601a2ea7853d7e7409 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 27 Feb 2021 11:45:19 -0500 Subject: [PATCH] Move main module to src/main.d. --- src/main.d | 6 ++++++ src/pegp/main.d | 10 ---------- 2 files changed, 6 insertions(+), 10 deletions(-) create mode 100644 src/main.d delete mode 100644 src/pegp/main.d 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; -}