Syntax | (cat s1 s2 … sn) → string |
---|---|
Arguments | s1: A string, integer, boolean or literal that you want to concatenate with others |
s2 … sn: Optional strings, integers, booleans or literals, each to be contcatenated. | |
Returns | string: A string composed of all the arguments concatenated together in the order of the argument list. |
Category | string operator |
Description | Sticks together strings, integers, booleans or literals forming larger strings in the order you supply with the argument list. |
(cat "He" "l" "llo W" "orld" 1 "!!" 1)
This returns the string “Hello World1!!1”. Return to Functions list