*print-meta*

dynamic varsince v0.0-927 clojure.core/*print-meta*Edit

Determines if metadata should be included when printing an object. Defaults to false.


Examples:

(println ^:foo {:a 1})
;; Prints:
;; {:a 1}

(binding [*print-meta* true]
  (println ^:foo {:a 1}))
;; Prints:
;; ^{:foo true} {:a 1}

Source docstring:
If set to logical true, when printing an object, its metadata will also
be printed in a form that can be read back by the reader.

Defaults to false.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(def
  ^{:dynamic true}
  *print-meta* false)