Files
Noja/tests/suite/Testcase_009_002
T
2022-08-12 05:30:41 +02:00

23 lines
267 B
Plaintext

#source
while none: {
true;
"Hello, world!";
}
false;
#bytecode
begin:
PUSHNNE;
JUMPIFNOTANDPOP end;
PUSHTRU;
POP 1;
PUSHSTR "Hello, world!";
POP 1;
JUMP begin;
end:
PUSHFLS;
POP 1;
RETURN 0;