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

3 lines
50 B
Text

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