diff options
| -rw-r--r-- | dbg.d | 4 | ||||
| -rw-r--r-- | main.d | 2 |
2 files changed, 2 insertions, 4 deletions
@@ -8,9 +8,7 @@ import parser; //import dbg; //import value; -bool DEBUG = true; -//bool DEBUG = false; - +bool DEBUG = false; bool REPL = false; @@ -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); |
