wasmtime-cli 45.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
;;! gc = true
;;! simd = true

(module
  (type $s (struct (field v128)))
  (func (export "alloc")
    struct.new_default $s
    drop
  )
)

(assert_return (invoke "alloc"))