in reply to Re: Re: Re: An Exegesis 4 thought
in thread An Exegesis 4 thought
If you get rid of @_ and the defaulting behaviour of shift/pop et al how do you do a programmatic conversion to Perl 6?sub foo { my $bar = shift; my %baz = @_; ... }
Of course, once you've got it autoconverted to perl 6 you'd go through and change it to
But having running code which you can test is important.sub foo($bar, %baz) { ... }
|
|---|