local function f( ... )
print('hello')
end
local x = string.dump(f, true)
loadstring(x)()
转载于:https://www.cnblogs.com/xiangnan/p/5902576.html
local function f( ... )
print('hello')
end
local x = string.dump(f, true)
loadstring(x)()
转载于:https://www.cnblogs.com/xiangnan/p/5902576.html