pub fn add(x: i32, y: i32) -> i32
Adds two numbers together.
let sum = add(2, 2); assert_eq!(sum, 4);