You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
They are edge cases when keyword args are not provided.
1:
deffoo(a: 1)putsaendfoo#=> 1 # okfooa: 99#=> 99 # okfoo99#=> 1 # wrong: should be ArgumentError
2:
deffoo(a,b:)putsaputsbend# okfoo"bar",b: "baz"#=> bar#=> baz# wrongfoob: "baz"#=> baz # wrong: should also be ArgumentError, and unassigned variable 'a' should not be 'baz'#=> baz
The text was updated successfully, but these errors were encountered:
They are edge cases when keyword args are not provided.
1:
2:
The text was updated successfully, but these errors were encountered: