Documentation[créer] [purger]
local p = {}

function p.afficher(frame)
	local x = ""
	lang = mw.getContentLanguage()
	for i in ipairs( frame.args ) do
        x = x .. "* " .. lang:formatNum( tonumber( frame.args[i] ) ) .. "\n"
    end
	return x
	
end

return p