mrubyedge 1.0.11

mruby/edge is yet another mruby that is specialized for running on WASM
Documentation
1
2
3
4
5
6
7
def splat_it(x, *args)
  args.each do |arg|
    p arg
  end
end

splat_it(10, 20, 30)