1 2 3 4 5 6 7 8
pub fn adicao(left: u64, right: u64) -> u64 { left + right } pub fn subtracao(left: u64, right: u64) -> u64 { left - right }