Files
unshell/examples/protocol_op_forward_call_receive.rs
T

9 lines
277 B
Rust
Raw Normal View History

2026-04-25 12:56:29 -06:00
#[path = "support/protocol_bench_common.rs"]
mod common;
fn main() {
let iterations = common::iterations_from_args(1_000);
2026-04-25 13:04:24 -06:00
let checksum = common::run_forward_call_receive(iterations);
println!("forward_call_receive iterations={iterations} checksum={checksum}");
2026-04-25 12:56:29 -06:00
}