From fd75cda9c39fb48fd541942463b6cf5ac09e17ff Mon Sep 17 00:00:00 2001 From: Avi Drucker Date: Sun, 10 Sep 2023 20:23:43 -0400 Subject: [PATCH] rm println statements --- shapes/src/shapes/core.cljs | 2 -- 1 file changed, 2 deletions(-) diff --git a/shapes/src/shapes/core.cljs b/shapes/src/shapes/core.cljs index e90a39e3..c1e16584 100644 --- a/shapes/src/shapes/core.cljs +++ b/shapes/src/shapes/core.cljs @@ -42,8 +42,6 @@ (defn type-to-name "Return a string representation of the type indicated by the symbol `thing`." [thing] - ;; (println (str "thing is a type of " (type thing))) - ;; (println (str "thing printed out as-is is " thing)) (cond (string? thing) "string" (number? thing) "number"