crafting-interpreters/lox/simple_while.lox

6 lines
54 B
Text
Raw Permalink Normal View History

2025-05-28 09:05:18 +02:00
var i = 0;
while (i < 10) {
print i;
i = i + 1;
}