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