advay26-rust-workshop-tools 0.1.2

Advay's sample crate for the Rust workshop
Documentation
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));
}