18 lines
146 B
Plaintext
18 lines
146 B
Plaintext
|
|
#source
|
|
|
|
A, B = func();
|
|
|
|
#bytecode
|
|
|
|
PUSHVAR "func";
|
|
CALL 0, 2;
|
|
|
|
ASS "B";
|
|
POP 1;
|
|
|
|
ASS "A";
|
|
|
|
POP 1;
|
|
RETURN 0;
|