zlox/samples/ch23_for.lox

3 lines
50 B
Plaintext

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