Module:Random

From ProleWiki, the proletarian encyclopedia
Revision as of 22:46, 5 October 2022 by Forte (talk | contribs) (Forgot to return export table)
local p = {}

function p.random(frame)
	local parent = frame:getParent()
	
	local a = parent.args[1]
	local b = parent.args[2] or 100
	
	return math.random(a,b)
end
return p