Module:RandomString

De Adadov.net wiki
Documentation icon Documentation Module[créer]
local p = {}

function p.randomString(length)
	math.randomseed(os.time())
	math.randomseed(os.time())
	math.randomseed(os.time())
	local res = ""
	for i = 1, length do
		res = res .. string.char(math.random(97, 122))
	end
	return res
end

return p