aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormryouse2023-06-01 19:18:53 -0400
committermryouse2023-06-01 19:25:21 -0400
commitd034b5d68b4addfa0a305746f9804d6db5cce988 (patch)
treef4be9b25d04996d211f378d143e6019705c86a82
parentfb4a026dc1a5b6469ff1da013874bc570fe41439 (diff)
remove extra print statements
-rw-r--r--chunk.d2
-rw-r--r--parser.d1
2 files changed, 0 insertions, 3 deletions
diff --git a/chunk.d b/chunk.d
index ea05d61..e24e3ab 100644
--- a/chunk.d
+++ b/chunk.d
@@ -83,8 +83,6 @@ class String : Seq {
}
String strSeq = cast(String)seq;
- writefln("in concat with '%s' and '%s'", this.str, strSeq.str);
-
return new String(this.str ~ strSeq.str);
}
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;
}