1 2 3 4 5 6 7 8
//! Module documentation use advay26_rust_workshop_tools_lib::add; /// This function prints "Hello, NuGet!" to the console pub fn say_hello() { //! Function documentation println!("Hello, NuGet! {}", add(26, 14)); }