7 lines
143 B
Lua
7 lines
143 B
Lua
math.randomseed(os.time()) -- random initialize
|
|
|
|
for x = 1,5 do
|
|
-- random generating
|
|
value = math.random(0,1000)
|
|
print(value)
|
|
end
|