wasm-tools 1.253.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
;; RUN: wat2wasm %

(module
  (func (export "add") (param i32 i32) (result i32)
    (i32.add (local.get 0) (local.get 1))
  )
)