Arc Forumnew | comments | leaders | submitlogin
2 points by pg 5799 days ago | link | parent

I don't think you need genstring. You can duplicate your example with +:

    > (apply + '("T" "h" "a" "d" "d")) 
    "Thadd"
or with string if you don't know what the first arg type will be:

    > (apply string '(t "h" "a" "d" "d")) 
    "thadd"


1 point by thaddeus 5799 days ago | link

There are sooo many uses for these generic functions, I just need to get up to speed with all the possibilities...

thnx T.

-----