Hi all, I just found out that Julia handles duplicate keyword varargs without a hiccup:
function test(; kwargs...)
println(kwargs)
end
test(a=1, a=2, b=2)
Any[(:a,1),(:a,2),(:b,2)]
Before I use this in my program, I'd like to know if this is considered a
bug or a feature?
Best,
Damien
