Jump to content

Module:Sandbox/CAS222222221

From Wikipedia, the free encyclopedia

This is the current revision of this page, as edited by Legoktm (talk | contribs) at 20:57, 23 October 2022 (Replace Module:No globals with require( "strict" )). The present address (URL) is a permanent link to this version.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

require('strict')

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

return p