Files
rippled/crates/hello_world/src/lib.rs
Sergey Kuznetsov 465fa8ec4b Add rust to CI
2026-06-18 14:47:29 +01: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()
}