1(module
2    (func (export "simple") (param i32) (result i32)
3        local.get 0
4    )
5    (func (export "get_f32") (result f32) f32.const 100)
6    (func (export "get_f64") (result f64) f64.const 100)
7    (func (export "echo_f32") (param f32) (result f32) local.get 0)
8    (func (export "echo_f64") (param f64) (result f64) local.get 0)
9)
10