Module:Sandbox/Certes

From Wikipedia, the free encyclopedia
local p = {}

function p._main()
	-- THE NEXT LINE ACTUALLY DOES SOMETHING (the rest is boilerplate)
	local uig = mw.getContentLanguage():gender( "Certes", "masculine", "feminine", "neutral", "other" )
	return uig
end -- of p._main

function p.main(frame)
	-- Take parameters out of the frame and pass them to p._main(). Return the result.
	return p._main()
end -- of p.main

return p