Execute the following command to run ./solutions/examples/func.rs
cargo run --example funcExercises are in ./exercises/src/lib.rs
pub fn mul() {
todo!();
}Fix the function mul inside ./exercises/src/lib.rs
This the function should take 2 inputs of the type u32, multiply them and then return the product.
pub fn div() {
todo!();
}Fix the function div inside ./exercises/src/lib.rs
This the function should take 2 inputs of the type u32, divide them and then return the quotient.
cargo test