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
def got_block
  yield 1
  #b.call
  yield 2
  #b.call 2
end

got_block

# got_block do |x|
#   puts "Got block with #{x}"
# end