Slide 7
Slide 7 text
ALL THE OPTIONS
# required argument, varargs, keyword arguments, varopts
def foo(required, *args, kw: nil, **options)
end
foo(5)
foo(5, 6, 7, 8)
foo(5, 6, 7, 8, kw: true)
foo(5, 6, 7, 8, kw: true, test: "too true")
# required = 5
# args = [ 6, 7, 8 ]
# kw = true
# options = { :test => "too true"}