6 lines
67 B
Lua
6 lines
67 B
Lua
|
|
i = 0
|
||
|
|
while true do
|
||
|
|
i = i + 1
|
||
|
|
if i > 10 then break end
|
||
|
|
end
|