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