Answers for "lua table concanation"

Lua
0

lua table concanation

function TableConcat(t1,t2)
    for i=1,#t2 do
        t1[#t1+1] = t2[i]
    end
    return t1
end
Posted by: Guest on September-18-2021

Browse Popular Code Answers by Language