Module:Random

From ProleWiki, the proletarian encyclopedia
Revision as of 22:51, 5 October 2022 by Forte (talk | contribs)
local p = {}

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