8 lines
61 B
Plaintext
8 lines
61 B
Plaintext
|
|
|
|
a = 0
|
|
while a < 100000
|
|
print("hello", a)
|
|
a = a + 1
|
|
end
|