rustgn

11 commits
Updated 2026-05-09 17:23:41
binaries/hello_build_script/src
binaries/hello_build_script/src/main.rs
fn main() {
    hello();
}

#[cfg(is_true)]
fn hello() {
    println!("Hello is_true!");
}

#[cfg(not(is_true))]
fn hello() {
    println!("Hello not(is_true)!");
}