//! `hyphae` is a tiny starter library crate.
//!//! # Example
//!//! ```
//! use hyphae::add;
//!//! assert_eq!(add(2, 3), 5);
//! ```
/// Adds two numbers.
pubfnadd(left:u64, right:u64)->u64{
left + right
}#[cfg(test)]modtests{usesuper::*;#[test]fnit_works(){let result =add(2,2);assert_eq!(result,4);}}