schala/while.schala
greg 4cf165b408 Use buffered reader for stdout
Not sure ifthis is actually helping
2017-09-19 22:10:59 -07:00

8 lines
61 B
Plaintext

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