On 2020-02-09 22:48, Paul Procacci wrote:
Named parameters must come after all positional parameters.Your example subroutine is invalid for this reason, while the following would be fine:sub abcdefg( $b, $f, $g, :$a, :$c, :$e)abcdefg("position1", "position2", "position3", :e("named_e"), :a("named_a"), :c("named_c"));
I understand now. Thank you!