Here is one way:
test(a,c,e) = println("$a $c $e")
args = (2,1,9)
test(args...)
aslo
test(;a=0,c=0,e=0) = println("$a $c $e")
args = Dict(:a=>2, :c=>1, :e=>9)
test(;args...)
Here is one way:
test(a,c,e) = println("$a $c $e")
args = (2,1,9)
test(args...)
aslo
test(;a=0,c=0,e=0) = println("$a $c $e")
args = Dict(:a=>2, :c=>1, :e=>9)
test(;args...)