⇐ Index ⇐ Strings
Concat(“abc” “def”) ->sixLetters
Takes the top two items from the stack, treats them as strings, and concatenates them to a single string.
Trace(Concat("abc" "def")) # Prints "abcdef"
⇐ Index