rust_impl

Function add_numbers

Source
pub(crate) fn add_numbers(a: i32, b: f64) -> f64
Expand description

This is a general comment about the function add_numbers It’s expect to be called like:

    let x = 5;
    let y = 4.1;
    let z = add_numbers(x, y);