Files
rippled/crates/hello_world/src/lib.rs
2026-08-19 14:30:06 +00:00

11 lines
186 B
Rust

#[cxx::bridge(namespace = "rs::hello_world")]
mod ffi {
extern "Rust" {
fn hello_world() -> String;
}
}
pub fn hello_world() -> String {
"hello_world".to_string()
}