Skip to content

Instantly share code, notes, and snippets.

@viluon
Created April 29, 2019 19:47
Show Gist options
  • Save viluon/16cbc5e7e951496e5f7c4022fa980f84 to your computer and use it in GitHub Desktop.
Save viluon/16cbc5e7e951496e5f7c4022fa980f84 to your computer and use it in GitHub Desktop.
local upvalue = {}
local x = {}
local ns = {}
local index = 1
function ns.inner()
return upvalue()
end
function ns.outer()
local something = 3
x[index] = ns.inner()
end
ns.outer()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment