Ruby Function with two stars
- AKA double splat
examples/functions/double_star.rb
def report(**kw) puts kw.class # Hash puts kw end report() report("math" => 99, "biology" => 88)
def report(**kw) puts kw.class # Hash puts kw end report() report("math" => 99, "biology" => 88)