Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/drop2
/
.
/
test
/
example
/
c-api-hello-world.txt
blob: 21a7c2a16460b4e6588a04b42ed069688128e68e [
file
] [
log
] [
blame
] [
edit
]
(module
(type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
(func $adder (; 0 ;) (param $0 i32) (param $1 i32) (result i32)
(i32.add
(local.get $0)
(local.get $1)
)
)
)