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