Modulu:No globals

Documentation for this module may be created at Modulu:No globals/dok

local mt = getmetatable(_G) or {}function mt.__index (t, k)if k ~= 'arg' thenerror('Globala idazten saiatu da ' .. tostring(k), 2)endreturn nilendfunction mt.__newindex(t, k, v)if k ~= 'arg' then--error('Globala idazten saiatu da ' .. tostring(k), 2)endrawset(t, k, v)endsetmetatable(_G, mt)