glox/tests/while.lox

28 lines
399 B
Text
Raw Normal View History

2024-10-07 21:47:55 +03:00
var iterator = 100;
{
while (iterator > 0) {
{
print iterator;
iterator = iterator - 2;
}
}
}
{
while (iterator < 100) {
{
print iterator;
iterator = iterator + 2;
if (iterator > 50) {
break;
}
print "shoud not be printed after 50";
}
}
}
print iterator;