advay26-rust-workshop-tools 0.1.2

Advay's sample crate for the Rust workshop
Documentation
1
2
3
4
5
6
use advay26_rust_workshop_tools::say_hello;

// Calls the [`say_hello`] function from the `advay26_rust_workshop_tools` crate
fn main() {
    say_hello();
}