Files
Noja/tests/runtime/select/select_from_list.noja-test

27 lines
256 B
Plaintext

@type [runtime]
@bytecode
PUSHLST 3;
PUSHINT 0;
PUSHSTR "A";
INSERT;
PUSHINT 1;
PUSHSTR "B";
INSERT;
PUSHINT 2;
PUSHSTR "C";
INSERT;
PUSHINT 1;
SELECT;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [B]