The same 3 types that share indexing operator (str, bytes, and arrays) also share the ability to concatenate
two values. The ++ operator is used for that purpose:
Input
Run
select'Hello'++' world';
OutputObjects
Press the 'Run' button to evaluate the input
Input
Run
selectb'byte'++b'-string';
OutputObjects
Press the 'Run' button to evaluate the input
Input
Run
select [1, 1] ++ [2, 3];
OutputObjects
Press the 'Run' button to evaluate the input
Note that tuples don't have any concatenation operator.