mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
11 lines
153 B
Lox
11 lines
153 B
Lox
for (var i = 0; i < 10; i = i + 1) {
|
|
if (i == 5)
|
|
break;
|
|
|
|
print i;
|
|
}
|
|
// expect: 0
|
|
// expect: 1
|
|
// expect: 2
|
|
// expect: 3
|
|
// expect: 4
|