schala/while.schala
2017-09-19 22:10:59 -07:00

8 lines
57 B
Plaintext

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