From 355b9f994907fdc271e30e2b8d6dbc90da5fcc2e Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Fri, 20 May 2022 18:50:43 -0400 Subject: [PATCH] Remove println crud --- src/ludus/interpreter.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ludus/interpreter.clj b/src/ludus/interpreter.clj index 1907beb..5b22e74 100644 --- a/src/ludus/interpreter.clj +++ b/src/ludus/interpreter.clj @@ -412,7 +412,6 @@ splat-map? (and (map? splatted) (::data/hashmap splatted))] - (println "interpreting splat in hash") (if splat-map? (merge %1 splatted) (throw (ex-info "Cannot splat non-hashmap into hashmap" {:ast %2}))))