Re: clojure.lang.Script

2008-12-21 Thread Parth Malwankar
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

Re: clojure.lang.Script

2008-12-21 Thread Emeka
> > > 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

Re: clojure.lang.Script

2008-12-21 Thread James Reeves
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

clojure.lang.Script

2008-12-20 Thread janus
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

Re: agents and hanging clojure.lang.Script

2008-11-26 Thread Shawn Hoover
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

agents and hanging clojure.lang.Script

2008-11-26 Thread Vincent Foley
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))