mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
15 lines
169 B
Lox
15 lines
169 B
Lox
|
|
var i = 0;
|
||
|
|
|
||
|
|
while (i < 10) {
|
||
|
|
if (i == 5)
|
||
|
|
break;
|
||
|
|
|
||
|
|
print i;
|
||
|
|
|
||
|
|
i = i + 1;
|
||
|
|
}
|
||
|
|
// expect: 0
|
||
|
|
// expect: 1
|
||
|
|
// expect: 2
|
||
|
|
// expect: 3
|
||
|
|
// expect: 4
|