On Dec 21, 8:21 pm, Emeka wrote:
> > java -cp clojure.jar clojure.lang.Script yourapp.clj
>
> In my SciTe I added java -cp clojure.jar clojure.lang.Script $(FilePath)
> plus others and when I click 'GO' or F5 instead of running the code and
> printing resul
>
>
> java -cp clojure.jar clojure.lang.Script yourapp.clj
>
In my SciTe I added java -cp clojure.jar clojure.lang.Script $(FilePath)
plus others and when I click 'GO' or F5 instead of running the code and
printing result. I have
>
> java -cp clojure.jar clojure.la
On Dec 20, 5:07 pm, janus wrote:
> I wanted to use clojure.lang.Script in order to use SciTe editor,
> however, I am not getting any result. Has anyone used Script before,
> if yes, please I need your help. First ,I need direction on how to use
> it .Or anyone really used Scite with
I wanted to use clojure.lang.Script in order to use SciTe editor,
however, I am not getting any result. Has anyone used Script before,
if yes, please I need your help. First ,I need direction on how to use
it .Or anyone really used Scite with Clojure, if yes, please copy you
code and send to me
On Wed, Nov 26, 2008 at 1:41 PM, Vincent Foley <[EMAIL PROTECTED]> wrote:
>
> I was toying around with agents today, and I got a weird behavior:
> agents hang clojure.lang.Script. Here's a simple demo script; if you
> run this script, it'll print the vector and the pr
I was toying around with agents today, and I got a weird behavior:
agents hang clojure.lang.Script. Here's a simple demo script; if you
run this script, it'll print the vector and the program will be
hung.
(let [a (agent [])]
(doseq [i (range 10)]
(send-off a conj i))