pub fn add(left: u64, right: u64) -> u64
Adds two integers and returns their sum.
use fone::add; let result = add(2, 2); assert_eq!(result, 4);