1 2 3 4///Crate for adding two numbers 5///``` 6fn add(a: i32, b: i32) -> i32 { 7 a + b 8} 9 10 11 12 13 14 15 16 17 18