Jump to content

Module:Sandbox/Certes

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Certes (talk | contribs) at 18:08, 13 February 2022 (Failed attempt to check whether a user exists (only works if they recorded a gender preference)). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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