You can use the ++ operator:
julia> using Dates
julia> ++(x, y, z) = Date(x, y, z)
++ (generic function with 1 method)
julia> 2022++1++1
2022-01-01
You can use the ++ operator:
julia> using Dates
julia> ++(x, y, z) = Date(x, y, z)
++ (generic function with 1 method)
julia> 2022++1++1
2022-01-01