Skip to content

Instantly share code, notes, and snippets.

@nefftd
Created June 13, 2014 23:23
Show Gist options
  • Save nefftd/13177101de3e56a985e4 to your computer and use it in GitHub Desktop.
Save nefftd/13177101de3e56a985e4 to your computer and use it in GitHub Desktop.
-- lol
setmetatable(myarray,{
__len = function(self)
local n = 0
while self[n+1] do
n = n + 1
end
return n
end
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment