Module:maths

Définition, traduction, prononciation, anagramme et synonyme sur le dictionnaire libre Wiktionnaire.

La documentation pour ce module peut être créée à Module:maths/Documentation

local p = {}

function p.random(frame)
	math.randomseed(os.time())
	local args = frame:getParent().args
	local min = args["min"] or 1
	local max = args["max"]
	
	return math.random(min, max)
end

return p