crafting-interpreters/lox/error.lox

8 lines
54 B
Text
Raw Normal View History

2025-05-27 09:22:29 +02:00
var a = 1;
while (a < 10) {
a = a + 1;
}
print a;