hyphae 0.1.0

A tiny Rust crate used as a starter library.
Documentation
//! `hyphae` is a tiny starter library crate.
//!
//! # Example
//!
//! ```
//! use hyphae::add;
//!
//! assert_eq!(add(2, 3), 5);
//! ```

/// Adds two numbers.
pub fn add(left: u64, right: u64) -> u64 {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}