Files
wasmtime/wasmtime-api/examples/hello.wat
2019-09-18 09:15:14 -07:00

5 lines
84 B
Plaintext

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