kit

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

table_fill_null.wat (156B)


      1 (module
      2   (table 1 4 funcref)
      3   (func (export "test_main") (result i32)
      4     i32.const 0
      5     ref.null func
      6     i32.const 1
      7     table.fill
      8     i32.const 42))