1 2 3 4 5 6 7
use chongs_adder::add_one; use chongs_adder::add_two; fn main() { println!("{}", add_one(2)); println!("{}", add_two(2)); }