pub fn is_odd(num: &i32) -> bool
Checks if parameter 1 is an odd number
use r_unit::math; let a = 7; assert!(math::is_odd(&a));