Re: Using Clojure on a Mac

2011-11-28 Thread Daniel Glauser
I recommend A and B, used to do C. That is install Clojure with Homebrew so you can quickly pull up a REPL to try things. To start the REPL you run "clj" as in /usr/local/bin/clj. I was expecting it to be called "clojure" and that threw me off a bit. When doing a project of any size whatsoever

Re: Using Clojure on a Mac

2011-11-28 Thread Sean Corfield
On Mon, Nov 28, 2011 at 11:16 AM, Stuart Sierra wrote: > You can run Clojure with: > >  java -cp clojure.jar clojure.main No, actually you can't. The download does not include clojure.jar. It includes clojure-1.3.0.jar now. Perhaps the Getting Started page on clojure.org can be updated to correct

Re: Using Clojure on a Mac

2011-11-28 Thread Sean Corfield
On Mon, Nov 28, 2011 at 4:22 AM, Kula wrote: > i recommend the brew tool > you can try it on website https://github.com/mxcl/homebrew I see people recommend against brew because the packages are out of date? -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World S

Re: Using Clojure on a Mac

2011-11-28 Thread Stuart Sierra
You can run Clojure with: java -cp clojure.jar clojure.main but this is a fairly bare-bones REPL experience (no command-line editing, for example). OR you can install Leiningen, which is a convenient build tool for Clojure projects: https://github.com/technomancy/leiningen Regards, -Stuart Si

Re: Using Clojure on a Mac

2011-11-28 Thread Kula
i recommend the brew tool you can try it on website https://*github*.com/mxcl/home*brew* and try to brew install clojure . then you got it. On Sun, Nov 27, 2011 at 14:15, Clojure NewB wrote: > > Hi, > > I've just installed Clojure 1.3 on a MBP, OSX 10.6.8. > > After unzipping the download,

Re: Using Clojure on a Mac

2011-11-27 Thread Sean Corfield
On Sat, Nov 26, 2011 at 10:15 PM, Clojure NewB wrote: > I've just installed Clojure 1.3 on a MBP, OSX  10.6.8. ... > How do I run Clojure? The best way to get Clojure up and running is to use Leiningen so you don't have to deal with classpaths etc. http://charlie.griefer.com/blog/2011/08/03/cloj

Using Clojure on a Mac

2011-11-27 Thread Clojure NewB
Hi, I've just installed Clojure 1.3 on a MBP, OSX 10.6.8. After unzipping the download, I'm left with a directory with a few .jar files and two subdirectories. (I'm also a Java newb too) How do I run Clojure? Thanks -- You received this message because you are subscribed to the Google Gr