dynamic var | since v1.7.10 | clojure.core/*ns* | Edit |
Var bound to a Namespace
object representing the current namespace.
Only used for bootstrapping.
Only accessible at runtime from a bootstrapped REPL. Nil otherwise.
Example below in a bootstrapped REPL:
(in-ns 'cljs.user)
*ns*
;;=> #object[cljs.core.Namespace]
(str *ns*)
;;=> "cljs.user"
Var bound to the current namespace. Only used for bootstrapping.
(def
^{:dynamic true
:jsdoc ["@type {*}"]}
*ns* nil)