mrubyedge 1.1.12

mruby/edge is yet another mruby that is specialized for running on WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
ary = []
ary2 = [1, 2, 3]
ary = ary + ary2
debug ary[0]

ha = {}
ha[:a] = 1
ha2 = {b: 2, c: 3}
ha = ha.merge(ha2)
debug ha[:a]
ha[:a] = 100
debug ha[:a]