RosettaCodeData/Task/Respond-to-an-unknown-method-call/Lua/respond-to-an-unknown-method-call.lua

5 lines
200 B
Lua
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
local object={print=print}
setmetatable(object,{__index=function(t,k)return function() print("You called the method",k)end end})
object.print("Hi") -->Hi
object.hello() -->You called the method hello