> I run this line
> java -cp c:/opt/jars/clojure.jar:. clojure.main foo.clj

On windows, the java classpath separator is ";", so that should be

java -cp c:/opt/jars/clojure.jar;. clojure.main foo.clj


> I get it can't find clojure.main

Doesn't really seem to matter here, but to eliminate
misunderstandings, it's better to copy & paste the exact error you get
instead of paraphrasing / typing from memory.

> What is the best way to install clojure???

Many people use leiningen these days, which does all the "download
dependencies (including clojure itself) and set up the classpath"
stuff for you. See https://github.com/technomancy/leiningen

-- 
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

Reply via email to