mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
3 lines
106 B
Rust
3 lines
106 B
Rust
fn op_add_4(x1: u32, x2: u32, x3: u32, x4: u32) -> Result<u32, anyhow::Error> {
|
|
Ok(x1 + x2 + x3 + x4)
|
|
}
|