learning-rust/src/python.rs
2023-11-15 15:49:16 +01:00

10 lines
146 B
Rust

pub fn main() {
#[link(name = "hello_python")]
extern "C" {
fn hello_python();
}
unsafe {
hello_python();
}
}