in reply to Re: An Exegesis 4 thought
in thread An Exegesis 4 thought
Will @_ then act as the default array in Perl 6? I wasn't sure about this, given how references have thus far been described.
Could the default behavior possibly be dealt with like the following? (assuming I'm remembering correctly that @_ is still going to be the default argument array for subrutines whse arguments haven't been otherwise specified)
sub foo { my $bar = .shift // "some default"; my $baz = .pop // "some other default"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: An Exegesis 4 thought
by Juerd (Abbot) on Apr 08, 2002 at 07:23 UTC | |
by Anonymous Monk on Apr 08, 2002 at 18:07 UTC | |
by pdcawley (Hermit) on Apr 08, 2002 at 21:31 UTC |