Skip to content

Instantly share code, notes, and snippets.

@jyrkive
Created June 24, 2018 13:33
Show Gist options
  • Save jyrkive/6b1b32dd5804c6393effbcdf8fb0cad8 to your computer and use it in GitHub Desktop.
Save jyrkive/6b1b32dd5804c6393effbcdf8fb0cad8 to your computer and use it in GitHub Desktop.
local function create_tables(count)
local parent_table = {}
for i = 1, count do
table.insert(parent_table, {})
end
return parent_table
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment