test commit

wow i hope it works!!!!!!!!!1
This commit is contained in:
Alec Obradovich 2024-11-20 20:18:28 -06:00
parent 7284730b71
commit f110a8cb66
No known key found for this signature in database
3 changed files with 25 additions and 0 deletions

6
dub.json Normal file
View file

@ -0,0 +1,6 @@
{
"name": "iirc",
"targetName": "iirc",
"targetType": "executable",
"targetPath": "bin"
}

11
iirc.settings Normal file
View file

@ -0,0 +1,11 @@
{
"build": {
"toolchain": "default",
"arch": "default",
"verbose": false,
"dub_additional_params": ""
},
"debug": {
"external_console": true
}
}

8
source/app.d Normal file
View file

@ -0,0 +1,8 @@
import std.stdio;
void main(string[] args) {
writeln("Hello World!");
writeln("Press enter...");
readln();
}