def foo(_, _=\'override\') _ end p foo(\"bye bye\") p foo(\"hello\", \"world\")
Output:
\"override\" \"hello\"
I c