Ruby Function with two stars
- AKA double splat
def report(**kw)
puts kw.class # Hash
puts kw
end
report()
report("math" => 99, "biology" => 88)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
def report(**kw)
puts kw.class # Hash
puts kw
end
report()
report("math" => 99, "biology" => 88)