wasm-tools 1.246.2

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
;; RUN: wast --assert default --snapshot tests/snapshots %

(module
  (func (param v128 v128) (result v128)
    local.get 0
    local.get 1
    i32.const 0
    select
  )
)