Module:Sandbox/Arccosecant/BouncyTest

This is an old revision of this page, as edited by Chrs (talk | contribs) at 19:55, 17 February 2021 (testing a thing). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local cfg = require('Module:Sandbox/Arccosecant/BouncyTest/cfg')
local p = {}

function p.call(frame)
	ret = ""
	for i=1,frame.args[1] do
		ret = ret .. frame.args[2] .. cfg[math.random(#cfg)] .. frame.args[3]
	end
	return ret
end

return p