mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-05-09 19:47:57 +00:00
fdce5c64f1
I tried locally merge `fix-tests` and `fix-clippy` branches and CI should work after my PRs
16 lines
229 B
WebAssembly Text Format
16 lines
229 B
WebAssembly Text Format
;; This test
|
|
|
|
(module
|
|
(import "env" "foo" (func $foo))
|
|
(import "env" "boo" (func $boo))
|
|
|
|
(func (export "i32.add") (param i32 i32) (result i32)
|
|
call $foo
|
|
call $boo
|
|
|
|
local.get 0
|
|
local.get 1
|
|
i32.add
|
|
)
|
|
)
|