Ah, that's better. Thank you!
Phil
Michał Marczyk 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 wrote:
>>
>>
>> I am trying to dum
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 wrote:
>
>
> I am trying to dump a representation of the contents of a list to file.
> I've recently changed how I ge