From d034b5d68b4addfa0a305746f9804d6db5cce988 Mon Sep 17 00:00:00 2001 From: mryouse Date: Thu, 1 Jun 2023 19:18:53 -0400 Subject: remove extra print statements --- chunk.d | 2 -- parser.d | 1 - 2 files changed, 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; } -- cgit v1.2.3