wasmer/lib/runtime-c-api/tests/assets/inc.wast
2019-07-31 14:12:25 +03:00

8 lines
170 B
Plaintext

(module
(func $inc (import "env" "inc"))
(func $get (import "env" "get") (result i32))
(func (export "inc_and_get") (result i32)
call $inc
call $get))