wasmtime-cli 43.0.2

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
(module
  (table $t 10 (ref null none))
  (func (export "f") (result (ref null none))
    (i32.const 99)
    (table.get $t)
  )
)