lyra-wasm-scripting-test/witguest/src/lib.rs

14 lines
210 B
Rust
Raw Normal View History

2024-04-11 23:03:39 +00:00
mod bindings;
use bindings::Guest;
struct Component;
impl Guest for Component {
/// Say hello!
fn hello_world() -> String {
bindings::host_test();
"Hello, World!".to_string()
}
}