ChaiScript/samples/while.wes
2009-06-06 16:35:37 +00:00

6 lines
66 B
Plaintext

i = 0
while (i < 10) {
print("i: " + i.to_string())
i = i + 1
}