zkat_workshop_example_cli/
lib.rs

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