aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}