1
2
3
4
5
6
7
8
9
wai_bindgen_rust::export!("hello-wasi.export.wai");

struct HelloWasi;

impl hello_wasi::HelloWasi for HelloWasi {
    fn print_hello_wasi() {
        println!("Hello, WASI!");
    }
}