roole
roole copied to clipboard
Support list concatenation using +
[0 1] + 2 -> [0 1 2]
-1 + [0, 1] -> [-1, 0, 1]
[0 1] + [2, 3] -> [0 1 2, 3]