From 65dd9dbd8d405caf0c74bac613b2434bb19ad9ec Mon Sep 17 00:00:00 2001 From: Bagomot Date: Mon, 11 Jun 2018 10:47:33 +0400 Subject: [PATCH] Dub init --- .gitignore | 6 ++++++ dub.sdl | 5 +++++ source/app.d | 6 ++++++ 3 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 dub.sdl create mode 100644 source/app.d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eec6d03 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.dub +docs.json +__dummy.html +*.o +*.obj +__test__*__ diff --git a/dub.sdl b/dub.sdl new file mode 100644 index 0000000..408fb14 --- /dev/null +++ b/dub.sdl @@ -0,0 +1,5 @@ +name "j1_cpu" +description "Implementation of the J1 Forth CPU in D programming language" +authors "aquaratixc" +copyright "LHS" +license "MIT" diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..c3eec7f --- /dev/null +++ b/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +} -- 2.45.2