7 lines
43 B
Plaintext
7 lines
43 B
Plaintext
i = 0
|
|
|
|
while i < 10 {
|
|
output(i)
|
|
i += 1
|
|
}
|