Jump to content

Module:No globals

Lát'ọwọ́ Wikipedia, ìwé ìmọ̀ ọ̀fẹ́
Àtúnyẹ̀wò ní 16:30, 22 Oṣù Ọ̀wàrà 2017 l'átọwọ́ Demmy (ọ̀rọ̀ | àfikún)
(ìyàtọ̀) ← Àtúnyẹ̀wò tópẹ́ju | Àtúnyẹ̀wò ìsinsìnyí (ìyàtọ̀) | Àtúnyẹ̀wò tótuntunju → (ìyàtọ̀)

Documentation for this module may be created at Module:No globals/doc

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)