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
16
class Object
  def hello
    puts "world"
    123
  end
end

def main
  obj = Object.new
  debug obj do
    [1]
  end
  obj.hello
end

main