RosettaCodeData/Task/Send-an-unknown-method-call/Lua/send-an-unknown-method-call.lua
Ingy döt Net 6f050a029e update
2013-06-05 21:47:54 +00:00

5 lines
116 B
Lua

local example = { }
function example:foo (x) return 42 + x end
local name = "foo"
example[name](example, 5) --> 47