1 2 3
fn op_add_4(x1: u32, x2: u32, x3: u32, x4: u32) -> Result<u32, anyhow::Error> { Ok(x1 + x2 + x3 + x4) }