Content deleted Content added
No edit summary |
Replace Module:No globals with require( "strict" ) |
||
(26 intermediate revisions by 2 users not shown) | |||
Line 1:
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
function p._main(args)
-- Main module code goes here.
end
|