Functions Documentation
View Function Edit Function
Name cat
Syntax (cat s1 s2 ... sn) -> string
Argument List 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.
Example
(cat "He" "l" "llo W" "orld"  1 "!!" 1)
This returns the string "Hello World1!!1".
Comment A very useful function for making your output look nice.