Re: printing lazy lists

2014-05-16 Thread Phillip Lord
Ah, that's better. Thank you! Phil Michał Marczyk michal.marc...@gmail.com writes: Use pr-str: user= (str (lazy-seq (list 1 2 3))) clojure.lang.LazySeq@7861 user= (pr-str (lazy-seq (list 1 2 3))) (1 2 3) Cheers, Michał On 15 May 2014 16:29, Phillip Lord phillip.l...@newcastle.ac.uk

Re: printing lazy lists

2014-05-15 Thread Michał Marczyk
Use pr-str: user= (str (lazy-seq (list 1 2 3))) clojure.lang.LazySeq@7861 user= (pr-str (lazy-seq (list 1 2 3))) (1 2 3) Cheers, Michał On 15 May 2014 16:29, Phillip Lord phillip.l...@newcastle.ac.uk wrote: I am trying to dump a representation of the contents of a list to file. I've