diff options
| author | mryouse | 2023-06-01 19:18:53 -0400 |
|---|---|---|
| committer | mryouse | 2023-06-01 19:25:21 -0400 |
| commit | d034b5d68b4addfa0a305746f9804d6db5cce988 (patch) | |
| tree | f4be9b25d04996d211f378d143e6019705c86a82 | |
| parent | fb4a026dc1a5b6469ff1da013874bc570fe41439 (diff) | |
remove extra print statements
| -rw-r--r-- | chunk.d | 2 | ||||
| -rw-r--r-- | parser.d | 1 |
2 files changed, 0 insertions, 3 deletions
@@ -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); } @@ -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; } |
