setmetatable(_G, {
__newindex = function (t, n, v)
error("attempt to write to undeclared variable " .. n , 2)
end,
__index = function (_, n)
error("attempt to read to undeclared variable " .. n, 2)
end
})
실행시
attempt to read to undeclared variable _PROMPT
D:\>