x = {1, 2, 3}
y = {4, 5, 6}
z = x + y
I have two tables x
and y
and just want to create a third one which is just the elements of them two (not sorted). I use the above code in an effort but this gives error input:3: attempt to perform arithmetic on a table value (global 'x')
...