Skip to content

Instantly share code, notes, and snippets.

@kpmy
Created April 17, 2016 13:38
Show Gist options
  • Save kpmy/d8bf0c8766d20d6d7e7635ae34393d2b to your computer and use it in GitHub Desktop.
Save kpmy/d8bf0c8766d20d6d7e7635ae34393d2b to your computer and use it in GitHub Desktop.
;; my little module
( module
(import $print "spectest" "print" (param i64))
(func $get (result i64) (return (i64.const 1)))
(func $start
(call_import $print (call $get))
)
(start $start)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment