Module:Sandbox/Certes

Revision as of 18:08, 13 February 2022 by imported>Certes (Failed attempt to check whether a user exists (only works if they recorded a gender preference))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Certes/doc

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