မာတိကာသို့ ခုန်သွားရန်

မဝ်ဂျူ:No globals

နူ ဝဳကဳပဳဒဳယာ
မူပလေဝ်ဒါန်လဝ် ပ္ဍဲ စၟတ်တ္ၚဲ နကဵု MF-Warburg (ဓရီုကျာ | တြးပတိတ်) (၁ revision imported: Importing from Incubator)
(တၞဟ်ခြာ) ← မူလိက်မပလေဝ်လဝ် တြေံ | မူမဒါန်လဝ် လက္ကရဴအိုတ် (တၞဟ်ခြာ) | မူမဒါန်လဝ် တၟိနူဂှ် → (တၞဟ်ခြာ)

Documentation for this module may be created at မဝ်ဂျူ: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)