7 lines
124 B
Text
7 lines
124 B
Text
|
|
while true do
|
||
|
|
local r = math.random(0, 19)
|
||
|
|
print(r)
|
||
|
|
if r == 10 then break end
|
||
|
|
print(math.random(0, 19))
|
||
|
|
end
|