//! Module documentation for advay26_rust_workshop_tools_lib
/// This function adds two numbers together for mathematically challenged people
pubfnadd(left:u64, right:u64)->u64{
left + right
}#[cfg(test)]modtests{usesuper::*;#[test]fnit_works(){let result =add(2,2);assert_eq!(result,4);}}