schala/source_files/while.maaru

8 lines
61 B
Plaintext
Raw Normal View History

2017-01-05 04:00:29 -08:00
a = 0
while a < 100000
2017-01-05 04:00:29 -08:00
print("hello", a)
a = a + 1
end