wasmtime-cli 44.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
(module
  (func $i32_test (export "i32_test") (param i32) (result i32)
    local.get 0)
  
  (func $i64_test (export "i64_test") (param i64) (result i64)
    local.get 0)
  
  (func $f32_test (export "f32_test") (param f32) (result f32)
    local.get 0)
  
  (func $f64_test (export "f64_test") (param f64) (result f64)
    local.get 0)
)