crafting-interpreters/lox/error.lox

7 lines
54 B
Text

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