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