emilbrat_test_library 0.1.1

Ignore this library, it is just for testing cargo and crates.io
Documentation
// #![allow(dead_code)]
// #![allow(unused_imports)]
// #![allow(unused_variables)]
// #![allow(non_snake_case)]
// #![allow(private_interfaces)]

pub mod persona;

// I'll just leave this cargo generated template stuff here..
pub fn add(left: usize, right: usize) -> usize {
    left + right
}

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

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