(strcat string1 [string2] ...)
The strcat function returns a new string concatenating two or more strings.
Example
: (strcat "Jim" "Meyer")
"JimMeyer"
: (strcat "Jim " "Meyer")
"Jim Meyer"
Related Functions
getstring