Re: Hello World not found

2013-03-05 Thread Andrew Pennebaker
That's a great idea! Actually, I've been having a lot of difficulty getting Leiningen installed in Windows. None of the installation methods work on my Windows machines: * Chocolatey Leiningen fails * lein.bat fails * lein Cygwin-compatible script fails On Tue, Mar 5, 2013 at 11:08 AM, BJG145 w

Re: Hello World not found

2013-03-05 Thread BJG145
If you're looking at Clojure on Windows for the first time, I'm trying to get a kind of "Clojure for Dummies" going at: www.silvercrow.co.uk/blog (Experienced developers need not apply...you'll roll your eyes.) On Tuesday, March 5, 2013 3:35:16 PM UTC, MC Andre wrote: > > Clojure can't find he

Re: Hello World not found

2013-03-05 Thread David Powell
It looks like the (unofficial) Clojure chocolatey package, installs its own clj.bat file. The "-m package.name" syntax only works for clojure packages that are on your classpath, and that script doesn't put the current directory on the classpath. You might have better luck with something like:

Hello World not found

2013-03-05 Thread MC Andre
Clojure can't find hello.clj in the current directory when run as "clj -m hello". Trace: C:\Documents and Settings\apenneba\Desktop>type hello.clj (ns hello (:gen-class)) (defn -main [& args] (println "Hello World!")) C:\Documents and Setti