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

p = {}

p.loop = function(frame)
	local out = {}
	for idx = 1, frame.args[2] do
		table.insert(out, idx .. " " .. frame.args[1])
	end
	return table.concat(out, "<br>")
end

return p