Is it more idiomatic to call functions with the na...
# getting-started
h
Is it more idiomatic to call functions with the named parameters named or not? i.e.
myFun(val1 = "Foo", val2 = "Bar")
vs
myFun("Foo", "Bar")
?