Hope this is the appropriate place for this... anyway, very trivial issue. I was playing around in an effort to begin to understand the ns fns & managed to get the current/active ns & REPL displayed ns out of synch via the following:
user> *ns* #<Namespace user> user> (in-ns 'howdy) #<Namespace howdy> howdy> (clojure.core/refer 'clojure.core) nil howdy> *ns* #<Namespace howdy> howdy> (remove-ns 'howdy) #<Namespace howdy> howdy> *ns* #<Namespace user> howdy> howdy> (in-ns 'user) #<Namespace user> howdy> Switching to another ns corrects it. BTW l'm really looking forward to digging into this language as a long time Java wanna-be Lispy programmer (so thx Rich) -Brian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
