Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created May 26, 2011 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoelzro/994018 to your computer and use it in GitHub Desktop.
Save hoelzro/994018 to your computer and use it in GitHub Desktop.
local t =setmetatable({}, {__call = function(s)
return next, s
end})
t.foo = 1
t.bar = 2
t.baz = 3
for k in t() do
print(k)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment