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