schala/while.schala

8 lines
57 B
Plaintext

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