Module:Rand: Difference between revisions

From Guild of Archivists
m (1 revision imported)
 
(No difference)

Latest revision as of 07:26, 30 October 2015

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