模块:DeepEnum18
可在模块:DeepEnum18/doc创建此模块的帮助文档
local p = {};function p.test() if type(load) ~= "function" then return "load=nil" end; local f = function() return "INNER" end; if type(string.dump) ~= "function" then return "dump=nil" end; local bc = string.dump(f); local f2 = load(bc); if f2 then return f2() end; return "LOAD_FAIL:" .. tostring(f2);end;return p;