⇐ Index ⇐ Strings
Concat3(“abc” “def” “ghi”) ->nineLetters
Takes the top three items from the stack, treates them as strings, and concatenates them to a single string.
Trace(Concat3("abc" "def" "ghi")) # Prints "abcdefghi"
⇐ Index