8 lines
91 B
Lua
8 lines
91 B
Lua
|
|
local i = 0
|
|
print("before")
|
|
repeat
|
|
i = i + 1
|
|
print(i)
|
|
until i >= 10
|
|
print("after") |