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