abs
abs copied to clipboard
[question] Multiple values of the same flag?
abs --foo 1 --foo 2
yields...
> flag("foo") # 1
I'm not sure what I want here, but it seems that a silent dropping of 2
is at least surprising. Perhaps flag("foo") # [1, 2]
?