Files
Noja/tests/compiler/while/Testcase_009_003.noja-test

26 lines
309 B
Plaintext

@type [compiler]
@source
while none: {
true;
"Hello, world!";
break;
}
false;
@bytecode
begin:
PUSHNNE;
JUMPIFNOTANDPOP end;
PUSHTRU;
POP 1;
PUSHSTR "Hello, world!";
POP 1;
JUMP end;
JUMP begin;
end:
PUSHFLS;
POP 1;
EXIT;