crafting-interpreters/lox/simple_while.lox
2025-05-28 09:05:18 +02:00

5 lines
54 B
Text

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