變更
小
已保护“模块:No globals”:高风险模板([编辑=仅管理员](无限期)[移动=仅管理员](无限期))
function mt.__index (t, k)
if k ~= 'arg' then
error('Tried to read nil global 读取该非全局变量出错:' .. tostring(k), 2)
end
return nil
function mt.__newindex(t, k, v)
if k ~= 'arg' then
error('Tried to write global 写入该全局变量出错:' .. tostring(k), 2)
end
rawset(t, k, v)
end
setmetatable(_G, mt)