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 following output:
   Clojure 1.2.0-master-SNAPSHOT
   Enter some text for the first time:
   (in-ns 'test.readln)
   Enter some text for the second time:

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

Any ideas?

Arie

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