rustgn

11 commits
Updated 2026-05-09 17:23:41
libraries/hello_rs/src
libraries/hello_rs/src/lib.rs
//! A simple library that provides a function to print a greeting message.

/// Prints a greeting message to the console.
pub fn hello(msg: &str) {
    println!("Hello, {}!", msg);
}