hello_hello/
lib.rs

1#[unsafe(no_mangle)]
2pub extern "C" fn hello() {
3    println!("Hello!");
4}
5
6pub fn hello_hello() {
7    println!("Hello!");
8}