Module:RandomString

De Adadov.net wiki
Révision datée du 14 janvier 2023 à 22:43 par Adadov (discussion | contributions)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
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