1 2 3 4 5 6 7 8 9 10
use mi_primera_lib::calc1::add; fn main() { println!("Testing library"); let c = add(3, 8); println!("Sum of 3 + 8: {}", c); println!("End of manual tests"); }