wasm-micro-runtime/samples/wasm-c-api/src/hello.wat
2020-07-23 16:54:13 +08:00

5 lines
84 B
Plaintext

(module
(func $hello (import "" "hello"))
(func (export "run") (call $hello))
)