Re: (newbie) running clojure app without repl

2009-01-16 Thread linh
Thanks for the answers. I'm very excited about Clojure, it seems to have all the features I was missing from Java and Ruby. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send

Re: (newbie) running clojure app without repl

2009-01-15 Thread Stuart Sierra
There is a standalone compiler that runs without the REPL: clojure.lang.Compile. The best examples of using it are the Ant build.xml files for Clojure and clojure-contrib. If I have time tomorrow I'll try to post a more detailed how-to. -Stuart Sierra On Jan 15, 6:53 pm, linh wrote: > Hi! >

Re: (newbie) running clojure app without repl

2009-01-15 Thread Eric Lavigne
> > > Hi! > I've had no experience in Lisp or clojure before. I've only worked > with Java and Ruby, so this question may seem stupid. Is there any way > to run a clojure app without REPL? > > For example something like: clojure my_app.clj > Something like this: java-cpclojure.jar:my_app_

(newbie) running clojure app without repl

2009-01-15 Thread linh
Hi! I've had no experience in Lisp or clojure before. I've only worked with Java and Ruby, so this question may seem stupid. Is there any way to run a clojure app without REPL? For example something like: clojure my_app.clj I've read that you can compile clojure with the comile function, but thi