Re: clojure.main default print function

2008-12-02 Thread Rich Hickey
On Dec 2, 2:37 pm, Perry Trolard <[EMAIL PROTECTED]> wrote: > Clarification: clojure.lang.Repl's behavior hasn't changed, it's just > that the clojure.main default REPL behaves differently from it. Those > who don't call clojure.main in their clj scripts won't notice a > difference. > Fixed (sv

Re: clojure.main default print function

2008-12-02 Thread Perry Trolard
Clarification: clojure.lang.Repl's behavior hasn't changed, it's just that the clojure.main default REPL behaves differently from it. Those who don't call clojure.main in their clj scripts won't notice a difference. Perry --~--~-~--~~~---~--~~ You received this mes

clojure.main default print function

2008-12-02 Thread Perry Trolard
With the adoption of the clojure.main at SVN r1127, the print behavior of the REPL changed from prn-style to println-style, e.g. ;r1126 user=> (list "hey" 'hey) ("hey" hey) ;r1127 & on user=> (list "hey" 'hey) (hey hey) I missed it when looking over Stephen's clojure.main code when proposed, bu