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