wasmer/lib/runtime-c-api/tests/assets/inc.wast

8 lines
170 B
Plaintext
Raw Normal View History

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