Returns a string that is the concatenation of multiple strings
Supported Platforms: Windows and Mac OS
(strcat [string string_n ...])
Type: String
Text values to concatenate.
Type: String
Concatenate text string. If no arguments are supplied, strcat returns a zero-length string.
(strcat "a" "bout") "about" (strcat "a" "b" "c") "abc" (strcat "a" "" "c") "ac" (strcat) ""