Answers for "random string generator lua"

Lua
1

random string generator lua

function RandomVariable(length)
	local res = ""
	for i = 1, length do
		res = res .. string.char(math.random(97, 122))
	end
	return res
end
Posted by: Guest on January-29-2021

Code answers related to "random string generator lua"

Browse Popular Code Answers by Language