From: FreeKMan@... Date: 2019-08-05T06:45:03+00:00 Subject: [ruby-core:94142] [Ruby master Feature#16045] Calling functions with keyword arguments Issue #16045 has been reported by D1mon (Dim F). ---------------------------------------- Feature #16045: Calling functions with keyword arguments https://bugs.ruby-lang.org/issues/16045 * Author: D1mon (Dim F) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- Python: ``` python def fn(a=1,b=2,c=3): print(a,b,c) fn() # 1 2 3 fn(c=4) # 1 2 4 ``` Ruby: ``` ruby def fn(a=1, b=2, c=3) p a,b,c end fn(c=4) # 4 2 3 ``` A very convenient and necessary thing that you must add in Ruby!? -- https://bugs.ruby-lang.org/ Unsubscribe: