In a running script it seems that the symbols in clojure.core are
always available regardless of the current namespace.

This is different in a REPL. The initial default namespace, user,
pulls in all of core (with a refer) so those symbols can be used
without namespace-qualifying them. However, if I do this:

(in-ns 'clojure.contrib.math)

then symbols in clojure.core need to be namespace-qualified unless I
also do this:

(clojure.core/refer 'clojure.core)

Does everything I said above sound correct?

-- 
R. Mark Volkmann
Object Computing, Inc.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to