use hs_bindgen::*; #[hs_bindgen(hello :: CString -> IO (()))] fn hello(name: &str) { println!("Hello from Rust, {name}!"); }