I feel a little confused by this thread. This simple code works in Julia, isn’t it what the author is asking for?
julia> f(a, b) = (a,b)
f (generic function with 1 method)
julia> f(2,3)
(2, 3)
julia> g(x) = f(999, x)
g (generic function with 1 method)
julia> g(3)
(999, 3)