Skip to content

Instantly share code, notes, and snippets.

@akornatskyy
Last active August 23, 2017 09:15
Show Gist options
  • Select an option

  • Save akornatskyy/9e6732db06cdd2c8515fa32fa21221d4 to your computer and use it in GitHub Desktop.

Select an option

Save akornatskyy/9e6732db06cdd2c8515fa32fa21221d4 to your computer and use it in GitHub Desktop.
Lua: How to copy table
local function table_copy(t)
local r = {}
for k, v in next, t do
r[k] = v
end
return r
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment