zlox/samples/ch23_while.lox

6 lines
57 B
Plaintext

var i = 0;
while(i < 10) {
print i;
i = i + 1;
}