6 lines
56 B
Plaintext
6 lines
56 B
Plaintext
|
|
local i
|
||
|
|
i = 0
|
||
|
|
loop(i < 3) {
|
||
|
|
print(i)
|
||
|
|
i = i + 1
|
||
|
|
}
|