Created
August 19, 2014 08:22
-
-
Save nefftd/f25fe2a1c0a5b9c27cc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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