1 2 3 4 5
use crate::MathError; pub fn tambah(a: i32, b: i32) -> Result<i32, MathError> { Ok(a + b) }