Functions in function

I would perhaps try

function f(x, y, z, a1, b1, tup1, tup2)
    f1(a1; tup1...) 
    f2(b1; tup2...)
end

f(x, y, a1, b1, (a2=4, a3=7), (b2='e', b3=11))
1 Like