Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 199 Bytes

ruby2_keyword_arguments_with_options.md

File metadata and controls

11 lines (8 loc) · 199 Bytes

Keyword Arguments with options

def foo(a:, **b)
  [a, b]
end

foo(a: 1, b: 2, c:3) #=> [1, {:b=>2, :c=>3}]

Article