File

util/uuid.lua @ 215:ec90acc13ba3

/me glares at waqas for messing up the repo
author Matthew Wild <mwild1@gmail.com>
date Tue, 04 Nov 2008 22:42:06 +0000 (2008-11-04)
parent 145:fbb3a4ff9cf1
child 519:cccd610a0ef9
line wrap: on
line source

local m_random = math.random;
module "uuid"

function generate()
	return m_random(0, 99999999);
end

return _M;