fn is_odd(num: i32) -> bool { num % 2 == 1 } fn main() { println!("{} is odd: {}", 9, is_odd(9)); }