ChaiScript/samples/while.wes
2009-06-07 01:34:29 +00:00

6 lines
70 B
Plaintext

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