Files
Noja/tests/runtime/add/int_plus_float.noja-test

14 lines
141 B
Plaintext

@type [runtime]
@bytecode
PUSHINT 90;
PUSHFLT 700.39;
ADD;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [790.39]