String-Append

(string-append string1 string2 ...) -> string

Combines the given strings to form a new string.

Examples:

>>(string-append "This" "is" "a" "new" "string")
:: "Thisisanewstring"
>>(string-append "This" " " "is" " " "a" " " "new" " " "string")
:: "This is a new string"