diff options
-rw-r--r-- | src/clj/clojure/boot.clj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clj/clojure/boot.clj b/src/clj/clojure/boot.clj index 1f1a66bc..f4625e77 100644 --- a/src/clj/clojure/boot.clj +++ b/src/clj/clojure/boot.clj @@ -3442,6 +3442,9 @@ (defmethod print-method Number [o, #^Writer w] (.write w (str o))) +(defmethod print-method Boolean [o, #^Writer w] + (.write w (str o))) + (defn print-simple [o, #^Writer w] (print-meta o w) (.write w (str o))) |