Files
Noja/tests/compiler/dowhile/Testcase_010_002.noja-test

22 lines
265 B
Plaintext

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