Custom Compat.jl Block

@static if VERSION ≥ v"1.9"
   # do new Julia stuff here
else
    # do pre-Julia 1.9 stuff
end
julia> VERSION
v"1.9.0"

julia> VERSION ≥ v"1.9"
true
1 Like