aboutsummaryrefslogtreecommitdiff
path: root/parser.d
diff options
context:
space:
mode:
authormryouse2023-06-01 19:18:53 -0400
committermryouse2023-06-01 19:25:21 -0400
commitd034b5d68b4addfa0a305746f9804d6db5cce988 (patch)
treef4be9b25d04996d211f378d143e6019705c86a82 /parser.d
parentfb4a026dc1a5b6469ff1da013874bc570fe41439 (diff)
remove extra print statements
Diffstat (limited to 'parser.d')
-rw-r--r--parser.d1
1 files changed, 0 insertions, 1 deletions
diff --git a/parser.d b/parser.d
index 31a9ad4..1a1e5fb 100644
--- a/parser.d
+++ b/parser.d
@@ -499,7 +499,6 @@ class Parser {
Def def = new Def(cast(Symbol)sym, val, line);
char ch = advance(); // closing paren
- writefln("got this char: '%c'", ch);
return def;
}