rustgn

11 commits
Updated 2026-05-09 17:23:41
binaries/hello_world_rs/src
binaries/hello_world_rs/src/main.rs
use hello_macro::HelloDerive;

#[derive(Debug, HelloDerive)]
struct Hello {}

fn main() {
    let _ = Hello {};

    hello_rs::hello("WorldRS");
}