nanowasm 0.0.2

A small, stand-alone WebAssembly interpreter.
1
2
3
4
5
6
7
8
9
10
(module
  (type (;0;) (func (param) (result)))
  (start 0)
  (func (;0;) (type 0) (param) (result)
     i32.const 1
     i32.const 2
     i32.add
     drop
  )
)