int fun_op_cpp_add(VM *vm)
Add two 64-bit integers from the VM stack and push the sum.
The Fun virtual machine state.
void vm_push_i64(VM *vm, int64_t v)
Push a 64-bit integer as a VM int Value (C ABI helper).
int64_t vm_pop_i64(VM *vm)
Pop a numeric Value and convert it to a 64-bit integer (C ABI helper).
Core virtual machine data structures and public VM API.