mrubyedge 0.1.6

mruby/edge is yet another mruby that is specialized for running on WASM
Documentation
1
2
3
4
5
6
7
8
def main
  arr = []
  arr[0] = 1
  arr << 2
  arr.push 3
  p arr
  p arr[1]
end