Skip to content

Instantly share code, notes, and snippets.

@agrberg
Created January 6, 2020 20:51
Show Gist options
  • Save agrberg/5ac2fc99e9c2c273cd5d543d99097f5c to your computer and use it in GitHub Desktop.
Save agrberg/5ac2fc99e9c2c273cd5d543d99097f5c to your computer and use it in GitHub Desktop.
def bar(one: 'a', two: 'b')
puts "#{one}, #{two}"
end
bar({ one: 1, two: 2 })
# => 1, 2
bar(one: 1, two: 2)
# => 1, 2
bar({ one: 1, three: 3 })
# => ArgumentError (unknown keyword: three)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment