Files
Noja/tests/compiler/expr/assignment/Testcase_005_002.noja-test

18 lines
157 B
Plaintext

@type [compiler]
@source
A, B = func();
@bytecode
PUSHVAR "func";
CALL 0, 2;
ASS "B";
POP 1;
ASS "A";
POP 1;
EXIT;