Does the :private limitation below mean that defn- xyz and def ^:private xyz won't make xyz inaccessible from outside the namespace? Any reason this would be difficult to implement for cljs? just curious.
<< def notes def produces ordinary JS variables :private metadata is not yet enforced by the compiler :const metadata in ClojureScript disallows re-def and supports case. In Clojure :const allows re-def but value inlined at use site. A def form evaluates to the value of the init form (instead of the var) >> (source) https://github.com/clojure/clojurescript/wiki/Differences-from-Clojure#special-forms -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
