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