Re: Small problem in CCW IDE

2010-07-26 Thread Arie van Wingerden
Thanks ka! 2010/7/26 ka > > So, it appears the (read-line) consumes the Clojure form (in-ns > > 'test.readln) probably stacked by CCW (at least I didn't type that!) > > Yup you're right, CCW "typed" that, you may disable that feature from > the Windows > Preferences > Clojure > Editor. > > Thank

Re: Small problem in CCW IDE

2010-07-25 Thread ka
> So, it appears the (read-line) consumes the Clojure form (in-ns > 'test.readln) probably stacked by CCW (at least I didn't type that!) Yup you're right, CCW "typed" that, you may disable that feature from the Windows > Preferences > Clojure > Editor. Thanks -- You received this message becaus

Small problem in CCW IDE

2010-07-25 Thread Arie van Wingerden
Hi, when I "Run as Clojure Repl" the next little source file: (ns test.readln) (defn -main [] (println "Enter some text for the first time:") (println (read-line)) (println "Enter some text for the second time:") (println (read-line))) (-main) I get the follo