cancel method
Cancel the interpreter. Sets atomic cancel flag. Idempotent. No-op if handle is 0.
Implementation
@override
void cancel(int handle) {
if (handle == 0) return;
ffi_native.monty_cancel(
Pointer<ffi_native.MontyHandle>.fromAddress(handle),
);
}