From 51afb9d03ec8a0b0a481c7b511299985683a5903 Mon Sep 17 00:00:00 2001 From: Henk Kalkwater Date: Mon, 30 Nov 2020 15:22:15 +0100 Subject: [PATCH] Secontial commit --- dub.sdl | 5 +++++ source/app.d | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 dub.sdl create mode 100644 source/app.d diff --git a/dub.sdl b/dub.sdl new file mode 100644 index 0000000..eb089b7 --- /dev/null +++ b/dub.sdl @@ -0,0 +1,5 @@ +name "aoc-2020" +description "Advent of Code 2020" +authors "Chris Josten" +copyright "Copyright © 2020, Chris Josten" +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."); +}