1 2 3 4 5 6 7 8
extern crate bocchi; fn main() { let a = 1; let b = 2; let c = bocchi::add(a, b); println!("{} + {} = {}", a, b, c); }