模組: No globals

出自新詞查詢
前往: 導覽、​ 搜尋
模板:high use

模板:module rating 模板:deprecated

The functionality this module provides was added to Scribunto itself (see T209310) and should now be used as 模板:ml-lua.

See also


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)
Cookies 幫助我們給予服務內容。依您有使用我們的服務,代表您同意我們使用 cookies。