Jump to content

Module:Sandbox/Alex 21

From Wikipedia, the free encyclopedia

This is the current revision of this page, as edited by Alex 21 (talk | contribs) at 22:59, 15 April 2023. 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(frame) 
	local args = require('Module:Arguments').getArgs(frame, {
		wrappers = 'Template:Aired episodes'
	})
	args = args or {}
	
	return mw.getContentLanguage():formatNum(args.number)
end

return p