Re: Stupid Java questions

2009-02-04 Thread Anand Patil
I agree & don't mean to complain. I'm just flagging the issues to make it easier for whoever goes through the docs after clojure 1.0 is tagged. Anand On Feb 4, 9:45 am, Zak Wilson wrote: > The namespace is correct on clojure.org/api, but there it doesn't > mention that it has a dependency that

Re: Stupid Java questions

2009-02-04 Thread Zak Wilson
The namespace is correct on clojure.org/api, but there it doesn't mention that it has a dependency that isn't included with Clojure. Clojure has been evolving very quickly, and sometimes the website doesn't keep up. It might be nice if somebody could take charge of making sure the site is up to d

Re: Stupid Java questions

2009-02-03 Thread Anand Patil
OK, I get it: - parallel.clj writes into the namespace 'clojure.parallel, not plain 'parallel as written on clojure.org/other_libraries - parallel.clj needs to be on my path, not my classpath. That wasn't so bad, but It'll be easier if the examples on the website were brought up to date. Che

Re: Stupid Java questions

2009-02-03 Thread Anand Patil
Thanks Zak, With the other jar I could load parallel.clj without errors, but I wasn't able to refer to the parallel namespace as on clojure.org/ other_libraries, nor was preduce present in the user namespace: user=> (load-file "parallel.clj") nil user=> (refer 'parallel) java.lang.Exception: No

Re: Stupid Java questions

2009-02-03 Thread Zak Wilson
I had similar results when I compiled jsr166y myself. There's a jar in the group's files that is known to work. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clo

Stupid Java questions

2009-02-03 Thread Anand Patil
Hi all, I'm using the system java on Mac OS Leopard, and confused about how to get the parallel library working. I've got the necessary jar file on my classpath: sihpc03:clojure anand$ echo $CLASSPATH /usr/local/clojure:/Library/Java/Extensions sihpc03:clojure anand$ ls /Library/Java/Extensions/