If have two lists:
local A = { var1 = value1, var2 = value2 };
local B = {foo = ‘bar’};
I was to insert the elements of list A with list B.
Output is this -
local B = {foo = ‘bar’, var1 = value1, var2 = value2}
Note that, there’s no ‘{}’ around the elements of list A when they are added to list B.
How do I go about it?