📅  最后修改于: 2022-03-11 14:59:21.485000             🧑  作者: Mango
-- assume the obj from last example
obj.hello = function ()
print("Hello!")
end
obj.goodbye = function ()
print("I must be going.")
end
obj.hello()
obj.goodbye()