diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..90d3d55 --- /dev/null +++ b/dub.json @@ -0,0 +1,6 @@ +{ + "name": "iirc", + "targetName": "iirc", + "targetType": "executable", + "targetPath": "bin" +} \ No newline at end of file diff --git a/iirc.settings b/iirc.settings new file mode 100644 index 0000000..a05641c --- /dev/null +++ b/iirc.settings @@ -0,0 +1,11 @@ +{ + "build": { + "toolchain": "default", + "arch": "default", + "verbose": false, + "dub_additional_params": "" + }, + "debug": { + "external_console": true + } +} \ No newline at end of file diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..025a598 --- /dev/null +++ b/source/app.d @@ -0,0 +1,8 @@ + +import std.stdio; +void main(string[] args) { + writeln("Hello World!"); + writeln("Press enter..."); + readln(); +} +