|
chong tsong wrote:
Yes we can. But you must use vararg expression (I assume you are using Lua 5.1).Can we give the function any parameters when invoking it?
local chunk = assert(loadstring [[ print(...) ]] ) chunk("1", "2", "3") -- print "nil" rather than "123"