Documentation for this module may be created at Module:Rand/doc
local p = {}
function p.hello()
math.randomseed(os.time())
return math.random(1,100),math.random(1,100),math.random(1,100)
end
math.randomseed(os.time())
function p.hello0()
return math.random(1,100),math.random(1,100),math.random(1,100)
end
return p