Hello there, I'm new to Clojure and encountered a problem which I couldn't solve on my own.
I created a new project using leinigen; told it to download and install clojure-contrib (along with some other things), which it does, and everything works fine except that I can't use clojure.contrib.math. If I try (:use clojure.contrib.math) I always get: clojure.contrib.math [Thrown class java.lang.ClassNotFoundException] but when I do this: (println (seq (.getURLs (java.lang.ClassLoader/ getSystemClassLoader)))) I get: (#<URL file:/Users/manu/Development/tma/test/> #<URL file:/Users/manu/ Development/tma/src/> #<URL file:/Users/manu/Development/tma/classes/> #<URL file:/Users/manu/Development/tma/lib/clojure-1.1.0.jar> #<URL file:/Users/manu/Development/tma/lib/clojure-contrib-1.1.0.jar> #<URL file:/Users/manu/Development/tma/lib/clojure-csv-1.1.0.jar> #<URL file:/Users/manu/Development/tma/lib/swank-clojure-1.2.1.jar>) which tells me that my system knows about clojure-contrib. So - what do I miss? btw: I am using emacs 23.2 with swank-clojure-1.2.1 Manuel -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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
