my-rust-lib2 1.0.3

A dummy library to play around with cargo publish
Documentation

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}


// some comment

pub mod my_rust_lib {

    pub fn fn_api2(name: &str, foo: FooStruct) {
        println!("{} {}", name, foo.number2)
    }

    pub struct FooStruct {
        pub number2: u32
    }
}