#[test] fn test_saturating_sub() { let a: usize = 10; dbg!(a.saturating_sub(5)); dbg!(a.saturating_sub(10)); dbg!(a.saturating_sub(15)); }