String-Join

(string-join argument string1 string2 string3) -> string

Combines the given strings into one, with argument inserted between each.

Example:

>>(string-join "," "a" "b" "c")
:: "a,b,c"