schala/while.maaru
2017-09-19 22:11:01 -07:00

8 lines
61 B
Plaintext

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