4 lines
99 B
Raku
4 lines
99 B
Raku
sub foo (*@positional, *%named) {
|
|
.say for @positional;
|
|
say .key, ': ', .value for %named;
|
|
}
|