Skip to content

Instantly share code, notes, and snippets.

@bcdroid
Created May 9, 2020 18:21
Show Gist options
  • Save bcdroid/57c5cf048c585d60894b2e91c5b7119a to your computer and use it in GitHub Desktop.
Save bcdroid/57c5cf048c585d60894b2e91c5b7119a to your computer and use it in GitHub Desktop.
(module
(import "" "f" (func $f (param $n i32) (result i32)))
(func $_start (export "_start") (result i32)
i32.const 0
call $f
)
)
(module
(func $f (export "f") (param $n i32) (result i32)
(i32.add (local.get $n) (i32.const 1))
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment