kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

import_table_global_start.wat (288B)


      1 (module
      2   (type $binop (func (param i32 i32) (result i32)))
      3   (import "host" "add" (func $add (type $binop)))
      4   (table 1 funcref)
      5   (global $g i32 (i32.const 7))
      6   (elem (i32.const 0) func $add)
      7   (func $start)
      8   (start $start)
      9   (func (export "test_main") (result i32)
     10     i32.const 0))