RosettaCodeData/Task/Respond-to-an-unknown-method-call/Lua/respond-to-an-unknown-method-call.lua
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

4 lines
200 B
Lua

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