Hi.
I Saw it is possible to call a function contained into a string with loadstring
local instruction = 'add(5, 6)'
loadstring(instruction)
But I need to do th samething with a method of a class
local instruction = 'add(5, 6)'
instruction = 'self:' .. instruction
loadstring(instruction)
Is it possible to do that with LUA ?