Skip to content

Instantly share code, notes, and snippets.

@pablophg
Last active August 29, 2015 14:10
Show Gist options
  • Save pablophg/abc4087a6c971da6a351 to your computer and use it in GitHub Desktop.
Save pablophg/abc4087a6c971da6a351 to your computer and use it in GitHub Desktop.
-- By Saml1er, for research :P
Testaz = { }
function Testaz:new (o,a,b)
setmetatable(o, self)
self.__index = self
self.str = tostring (a + b)
return o
end
function Testaz:ptr ()
print(self.str)
end
local z = Testaz:new ({},5,6)
z:ptr()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment