elna/tests/vm/print_after_loop.elna

10 lines
92 B
Plaintext

proc main() {
var x: int;
x := 0;
while (x < 2) {
x := x + 1;
}
printi(x);
}