Module:No globals: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 June 2024

  • curprev 20:4620:46, 25 June 2024Hori talk contribs 264 bytes +264 Created page with "local a=getmetatable(_G)or{}function a.__index(b,c)if c~='arg'then error('Tried to read nil global '..tostring(c),2)end;return nil end;function a.__newindex(b,c,d)if c~='arg'then error('Tried to write global '..tostring(c),2)end;rawset(b,c,d)end;setmetatable(_G,a)"