aboutsummaryrefslogtreecommitdiff
path: root/main.d
diff options
context:
space:
mode:
authormryouse2023-06-11 22:01:03 +0000
committermryouse2023-06-11 22:01:03 +0000
commit211b5e24163311168c4e03f62521ec85a53a8839 (patch)
tree9b01a2e2c1f1f550efa0ec9b803480a4c9933632 /main.d
parent4dcd2fd24a2a09df4eaef5a425a168146ce96a4d (diff)
add debug flag
Diffstat (limited to 'main.d')
-rw-r--r--main.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.d b/main.d
index 683eeb0..66542bd 100644
--- a/main.d
+++ b/main.d
@@ -61,7 +61,7 @@ string getCore(bool noCore) {
int main(string[] args) {
bool noCore = false;
- getopt(args, "no-core", &noCore);
+ getopt(args, "no-core", &noCore, "d", &DEBUG);
if (args.length <= 1) {
repl(noCore);