6 lines
64 B
Plaintext
6 lines
64 B
Plaintext
for i to 10 {
|
|
if i == 5 {
|
|
break
|
|
}
|
|
print(i)
|
|
} |