1 2 3 4 5 6 7
pub fn somar(left: i64, right: i64) -> i64 { left + right } pub fn subtrair(left: i64, right: i64) -> i64 { left - right }