pub(crate) fn add_numbers(a: i32, b: f64) -> f64
This is a general comment about the function add_numbers It’s expect to be called like:
add_numbers
let x = 5; let y = 4.1; let z = add_numbers(x, y);