wasmtime-cli 45.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
;;! exceptions = true
;;! gc = true

(module
  (table $t 10 exnref)
  (global $g exnref (ref.null exn))
  (elem (table $t) (i32.const 0) exnref (global.get $g))
)