mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-22 14:50:54 +00:00
11 lines
186 B
Rust
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()
|
|
}
|