5 lines
149 B
Text
5 lines
149 B
Text
local file = io.open("/dev/urandom", "rb")
|
|
local a, b, c, d = file:read(4):byte(1, 4)
|
|
file:close()
|
|
local n = a | b << 8 | c << 16 | d << 24
|
|
print(n)
|