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
13
14
15
def puts2(a)
  a
end

ret = 4.times do |i|
  puts "loop #{i}"
  puts2 "dummy"
  #i.inspect
  if i > 1
    __debug__vm_info
    break 9999
  end
end

p ret