On Wed, Aug 25, 2010 at 7:17 PM, HB <hubaghd...@gmail.com> wrote:
> Both Groovy and Scala have a compiler to produce class files.
> Does Clojure has a compiler?

Yup. See the recent thread called "AOT compilation newbie mistakes"
for both the way to do it and some of the issues you may run into.

Several people prefer using a build tool like Leiningen tho' (I find
that easier to work with than command line compilation):

http://github.com/technomancy/leiningen

Then you can just do:

lein new project
cd project
lein test -- to run the unit tests for your project
lein compile -- to compile to .class files
lein jar -- to create a JAR file

etc.
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

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

Reply via email to