In a function definition, you can also use a parameter to get number of inputs but I think there are already good solutions above.
julia> function f(x::Vararg{Any, N}) where N
@show N
return reduce(+, x, init=false)
end
f (generic function with 1 method)
julia> f()
N = 0
false
julia> f(1,2,3.0, 5.0, 6.0, π)
N = 6
20.141592653589793
julia> f(1,2,3.0, 5.0, 6.0, π, Int8('0'))
N = 7
68.1415926535898
julia> f(1,2,3.0, 5.0, 6.0, π, 0x0)
N = 7
20.141592653589793