Skip to content

Instantly share code, notes, and snippets.

@kumpera
Created October 5, 2017 21:41
Show Gist options
  • Save kumpera/bc2b7108aca031553516f56b8d05f84b to your computer and use it in GitHub Desktop.
Save kumpera/bc2b7108aca031553516f56b8d05f84b to your computer and use it in GitHub Desktop.
(module
(type $0 (func (param i32 i32) (result i32)))
(table 1 1 anyfunc)
(elem (i32.const 0) $Main)
(memory $0 0)
(func $Main (type $0) (param $0 i32) (param $1 i32) (result i32)
(i32.add
(get_local $0)
(get_local $1)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment