zlox/samples/ch23_while.lox

6 lines
57 B
Plaintext
Raw Normal View History

2024-08-27 14:15:29 +02:00
var i = 0;
while(i < 10) {
print i;
i = i + 1;
}