Maybe try Leiningen? It is very nice, and it can take care of much of the Java hassle more or less behind the scenes.
First download https://github.com/technomancy/leiningen/raw/master/bin/lein<https://github.com/technomancy/leiningen/raw/master/bin/lein.bat> (Linux, OSX, Cygwin) https://github.com/technomancy/leiningen/raw/master/bin/lein.bat (Windows) and put in /tmp or C:\Temp, then add to your path: export PATH=/tmp:${PATH} (Linux...) set PATH=C:\Temp;%PATH% (Windows) Then run lein self-install lein new hello cd hello echo "(defn -main [] (println \"hello core\"))" >> src/hello/core.clj lein run -m hello.core (The echo is slightly different on Windows... just edit the file if that's a problem :) If that works, then simply try lein and read through the other options, followed up with lein help whatever-strikes-your-fancy Cheers, Stefan On Wed, Mar 23, 2011 at 3:20 PM, ultranewb <pineapple.l...@yahoo.com> wrote: > On Mar 23, 9:10 pm, Aaron Cohen <aa...@assonance.org> wrote: > > Did you search for getting started guides? If so and you didn't find > > these, how can they be made easier to find? If you didn't find them, > > why not? If you found them and they didn't help, why not? > > Yes, I had previously found all those guides, and much more > (screencasts, etc). They didn't help because they either showed you > how to get a REPL up and going, or they showed you how to download and > run something like NetBeans. In the first case, there is only so much > coding you can do in a REPL. In the latter case, fine - I have > NetBeans. NOW what do I do? > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegroups.com > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en