Fix prelude/print bug

This commit is contained in:
Scott Richmond 2022-04-03 22:23:12 -04:00
parent aa3692a141
commit bf8e1d1924

View File

@ -41,7 +41,7 @@
(def print- {:name "print" (def print- {:name "print"
::data/type ::data/clj ::data/type ::data/clj
:body (fn [& args] :body (fn [& args]
(println (str args)) (println (apply str args))
:ok)}) :ok)})
(def prelude {"eq" eq (def prelude {"eq" eq