On Monday, May 4, 2015, marc fawzi wrote: > I assumed "walk" in the :require form below is a namespace > or a reference to a namespace and therefore if I > console.log it then I should get something other than > undefined. But undefined is what I get. ... > (ns main.hello > (:require > [clojure.walk :as walk]
The "walk" in that example is just an alias, which is a property of the "main.hello" namespace that tells the compiler how to resolve symbols. Aliases are never reified as first-class objects. -S -- 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.
