1.functype foo () -> ()
2
3  .globl  call_foo
4call_foo:
5  .functype call_foo () -> ()
6  call  foo
7  end_function
8
9  .import_module  foo, baz
10