Skip to content

Instantly share code, notes, and snippets.

@katlogic
Created May 3, 2014 14:40
Show Gist options
  • Save katlogic/e52be9dad4290170ac64 to your computer and use it in GitHub Desktop.
Save katlogic/e52be9dad4290170ac64 to your computer and use it in GitHub Desktop.
local resurrect
local t = setmetatable({}, {
__gc = function(t)
print("resurrecting")
resurrect=t
end
})
local weak = setmetatable({x=t}, {__mode="v"})
t = nil
collectgarbage()
print(weak.x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment