(defn pprint-simple-default [obj] (cond (.isArray (class obj)) (pprint-array obj) (and *print-suppress-namespaces* (symbol? obj)) (print (name obj)) :else (pr obj)))
Comments top
No comments for pprint-simple-default. Log in to add a comment.