pub fn add(left: u64, right: u64) -> u64
Adds two numbers together
use crate_published::add; let answer = add(3, 2); assert_eq!(5, answer);