schala/source_files/while.maaru

8 lines
61 B
Plaintext

a = 0
while a < 100000
print("hello", a)
a = a + 1
end