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