Initialized dub

This commit is contained in:
Tristan B. Kildaire 2020-06-21 17:24:48 +02:00
parent a4e4c3a6ee
commit 1166a44c28
2 changed files with 16 additions and 0 deletions

10
dub.json Normal file
View File

@ -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"
}

6
source/app.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}