Module:Rand

From Guild of Archivists
Revision as of 07:26, 30 October 2015 by Alahmnat (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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