ORIGINAL POST
Given that there is no built in function in Lua, I am in search of a function that allows me to append tables together. I have google
Overcomplicated answers much?
here is my implementation:
function TableConcat(t1,t2) for i=1,#t2 do t1[#t1+i] = t2[i] end return t1 end