Skip to content

Instantly share code, notes, and snippets.

View ofhope's full-sized avatar

Alexis Hope ofhope

View GitHub Profile
@ofhope
ofhope / account.lua
Last active May 23, 2019 06:00
Example from the Lua docs on creating class like behaviour using metatables
-- Basic lua class
-- http://www.lua.org/pil/16.html
-- http://www.lua.org/pil/16.1.html
Account = { balance=0 }
function Account:new (o)
o = o or {
balance = 0
}
setmetatable(o, self)