1 2 3 4 5 6 7 8
//! This is documentation for the module as a whole. use zkat_workshop_example_lib::add; /// This says hello world! It invokes [`println`] in order to work. pub fn say_hello() { println!("Hello, nuget! {}", add(2, 3)); }