m1.wat 331 B

1234567891011121314
  1. (module
  2. (func $f1 (export "f1") (result i32) (i32.const 1))
  3. (memory $m1 1 2)
  4. (table $t1 0 funcref)
  5. (global $g1 i32 (i32.const 1))
  6. (export "m1" (memory $m1))
  7. (export "m1_alias" (memory $m1))
  8. (export "t1" (table $t1))
  9. (export "t1_alias" (table $t1))
  10. (export "g1" (global $g1))
  11. (export "g1_alias" (global $g1))
  12. )