禁止全局变量的使用
setmetatable(_G, {
__newindex = function(table, key, value)
error("Attempt to write to undeclared global variable: " .. tostring(key), 2)
end,
__index = function(table, key)
error("Attempt to read undeclared global variable: " .. tostring(key), 2)
end,
})