Модул:No globals
Изглед
Документацијата за овој модул можете да ја создадете на Модул:No globals/док
-- Модул:No globals
-- Imported from mk.wikipedia
-- 2016-06-22 -- V2 -- last modified by DenisWasRight
-- Extended version for mk.wiktionary
local mt = getmetatable(_G) or {}
function mt.__index (t, k)
if k ~= 'arg' then
error('Tried to read nil global ' .. tostring(k), 2)
end
return nil
end
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)