On Wed, May 03, 2006 at 02:10:29AM +0800, Audrey Tang wrote:
> [EMAIL PROTECTED] wrote:
> > Is my ($foo, *, $bar) = 1..3 legal perl6? my ($foo, undef, $bar) =
> > 1..3; is valid perl5, but AFAIK that is completely undocumented. (It's
> > quite useful from time to time
>
> Most likely yes, as lva
[EMAIL PROTECTED] wrote:
> Is my ($foo, *, $bar) = 1..3 legal perl6? my ($foo, undef, $bar) =
> 1..3; is valid perl5, but AFAIK that is completely undocumented. (It's
> quite useful from time to time
Most likely yes, as lvalue * can just act as a /dev/null.
> -- now if only my (@rest, $almost,
On Mon, May 01, 2006 at 10:32:02AM -0700, [EMAIL PROTECTED] wrote:
> Log:
> * S03.pod: Retire lvalue undef and replace it with lvalue Whatever:
>
> # Perl 5
> (undef, undef, $x) = (1,2,3);
>
> # Perl 6
> (*, *, $x) = (1,2,3);
Is my ($foo, *, $bar) = 1..3 legal perl6? my ($foo, u
Author: autrijus
Date: Mon May 1 10:32:02 2006
New Revision: 9076
Modified:
doc/trunk/design/syn/S03.pod
Log:
* S03.pod: Retire lvalue undef and replace it with lvalue Whatever:
# Perl 5
(undef, undef, $x) = (1,2,3);
# Perl 6
(*, *, $x) = (1,2,3);
Modified: doc/trunk/design