From 1166a44c285377c2b7e88f0a3d93e030d51c16f9 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sun, 21 Jun 2020 17:24:48 +0200 Subject: [PATCH] Initialized dub --- dub.json | 10 ++++++++++ source/app.d | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 dub.json create mode 100644 source/app.d diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..63d10e6 --- /dev/null +++ b/dub.json @@ -0,0 +1,10 @@ +{ + "authors": [ + "Tristan B. Kildaire" + ], + "copyright": "Copyright © 2020, Tristan B. Kildaire", + "description": "A minimal D application.", + "license": "proprietary", + "name": "tristanable", + "targetType": "library" +} \ No newline at end of file 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."); +}