Re: Where is clojure.inspector namespace

2013-04-07 Thread Josh Kamau
Thanks very much Michael... Now i finally get it ;) Josh On Sun, Apr 7, 2013 at 1:55 PM, Michael Klishin wrote: > > 2013/4/7 Josh Kamau > >> You mean even if i use a fully qualified namespace such as >> (clojure.inspector/inspect ) , i will still need to have 'required' the >> namespace?

Re: Where is clojure.inspector namespace

2013-04-07 Thread Michael Klishin
2013/4/7 Josh Kamau > You mean even if i use a fully qualified namespace such as > (clojure.inspector/inspect ) , i will still need to have 'required' the > namespace? ... In java, if i use the fully qualified class name (e.g > java.util.Date), i dont have to import it. Yes. In Java you

Re: Where is clojure.inspector namespace

2013-04-07 Thread Josh Kamau
Thanks Michael and David. You mean even if i use a fully qualified namespace such as (clojure.inspector/inspect ) , i will still need to have 'required' the namespace? ... In java, if i use the fully qualified class name (e.g java.util.Date), i dont have to import it. Regards Josh On Sun,

Re: Where is clojure.inspector namespace

2013-04-07 Thread Michael Klishin
2013/4/7 Josh Kamau > Do i need to require/use or add any dependency ? Namespaces besides clojure.core need to be required. REPLs such as REPLy may require a few additional ones for you, sometimes. http://clojure-doc.org/articles/language/namespaces.html -- MK http://github.com/michaelklishi

Re: Where is clojure.inspector namespace

2013-04-07 Thread David Powell
On Sun, Apr 7, 2013 at 10:36 AM, Josh Kamau wrote: > > I keep getting this : > ClassNotFoundException clojure.inspector java.net.URLClassLoader$1.run > (URLClassLoader.java:366) > > when i try to do this : > (clojure.inspector/inspect (range 10)) > > Do i need to require/use or add any dependen