~~NOTOC~~ <=[[4rpl:start| Index]] \\ <=[[4rpl:start#strings| Strings]] ====== Concat ====== Concat(“abc” “def”) ->sixLetters ===== Description ===== Takes the top two items from the stack, treats them as strings, and concatenates them to a single string. ===== Examples ===== Trace(Concat("abc" "def")) # Prints "abcdef" <=[[4rpl:start| Index]]