Thanks!
--~--~-~--~~~---~--~~
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
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options,
On Oct 25, 5:27 pm, Timothy Pratley <[EMAIL PROTECTED]> wrote:
> > (set! *print-length* 50)
>
> Ah perfect. Thanks! Is there a way to make this default?
clojure.lang.Repl will run all the files listed before it goes to
the prompt. So I have my clj script updated to accept a
.cljrc.clj file that
> (set! *print-length* 50)
Ah perfect. Thanks! Is there a way to make this default?
--~--~-~--~~~---~--~~
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
To u
> Currently Im using winXP cmd box to start the repl.
> Below is an example of how to reproduce:
>
> (defn lazy-death [x & more]
> (lazy-cons x (lazy-death more)))
> user=> (lazy-death [1 2 3])
> ; fills the box with nil, then colors go wonky, then monitor may reset
> p
ption starting:
http://groups.google.com/group/clojure/web/lazy-death.PNG
I realise that this isn't a clojure problem (its doing what I told it
to), more an environment issue.
Currently Im using winXP cmd box to start the repl.
Below is an example of how to reproduce:
(defn lazy-death