As long as you have the clojure.contrib jar in your path you can do:

(use 'clojure.contrib.seq-utils)

(flatten [1 2 3 '(4 5 6)])
=> (1 2 3 4 5 6)

On Sun, Nov 30, 2008 at 9:36 PM, samppi <[EMAIL PROTECTED]> wrote:

>
> For any given collection [3 2 [3 5 1] 1 [3 4 1] 0], how may I get [3 2
> 3 5 1 1 3 4 1 0]?
>
> Thanks in advance!
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to