模块:No globals:修订历史

跳转到导航 跳转到搜索

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2022年12月25日 (星期日)

  • 当前之前 02:152022年12月25日 (日) 02:15草awa 留言 贡献 307字节 −10 无编辑摘要
  • 当前之前 02:152022年12月25日 (日) 02:15草awa 留言 贡献 317字节 +317 Created page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('尝试读取空全局变量:' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('尝试写入全局变量:' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)"