pub fn add(a: i32, b: i32) -> i32
Adds two numbers together.
let sum = second_class::add(2, 3); assert_eq!(sum, 5);