Subject: | Investigate compatibility with forthcoming native signatures |
Kavorka should be a proper superset.
In particular, native sigs seem to allow:
sub foo ($bar=, @baz=) { ... }
which is equivalent to:
sub foo ($bar=undef, @baz=()) { ... }
And native sigs allow anonymous parameters (i.e. $) to have a default.