Skip to content

Instantly share code, notes, and snippets.

@nefftd
Created August 19, 2014 08:22
Show Gist options
  • Save nefftd/f25fe2a1c0a5b9c27cc4 to your computer and use it in GitHub Desktop.
Save nefftd/f25fe2a1c0a5b9c27cc4 to your computer and use it in GitHub Desktop.
local function merge2into1(a,b)
local c = {}
for i = 1,#a do
c[#c+1] = a[i]
end
for i = 1,#b do
c[c#+1] = b[i]
end
return c
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment