Module:Sandbox/Thparkth

Revision as of 21:13, 20 September 2022 by imported>Thparkth (test)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Thparkth/doc

local p = {}

function p.random( frame )
    math.randomseed(os.time() + math.floor(os.clock() * 1000000000))
    return "|-\n" .. "| " .. os.time() .. "|| " .. os.clock() .. "|| " .. string.format("%06x",math.random(16777216)) .. "\n"
end

return p