1 2 3 4 5 6 7 8
use parth10606_first_crate::utils::math; fn main() { let a = 12; let b = 4; println!("Add: {}", math::add(a, b)); }