Quick actions

cmd+k|ctrl+k

Navigation

Languages

Random

Snippet info

Language

Lua

Visibility

public

Author

fmmdrc

Created

2021-10-13T23:31:30.858064Z

Updated

2021-12-01T06:17:55.83504Z

Length = 100

math.randomseed(os.time())

function a(b)
	local c = ""
	for i = 1, b do
		c = c..string.char(math.random(97, 122), math.random(48, 57))
	end
	print(c)
end

a(Length)
INFO