Files
zlox/samples/ch23_while.lox
2024-08-27 14:32:11 +02:00

6 lines
57 B
Plaintext

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