Hi Mike,

I am also a newbie for Clojure.

On 19 February 2010 15:18, Mike K <mbk.li...@gmail.com> wrote:
> Regarding "append" from CL: ISTM that this is similar to "concat" in
> Clojure.  I tried the following definition:

How about this?

user=> (defn append [& parts] parts)
#'user/append
user=>  (append '(a b c) '(d e f) '(g))
((a b c) (d e f) (g))

Regards,

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to