kit

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

global_state.wat (173B)


      1 (module
      2   (global $g (mut i32) (i32.const 40))
      3   (func (export "test_main") (result i32)
      4     global.get $g
      5     i32.const 2
      6     i32.add
      7     global.set $g
      8     global.get $g))