Re: [svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-02 Thread Audrey Tang
[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,

Re: [svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-02 Thread james
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 lvalue *

[svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-01 Thread autrijus
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:

Re: [svn:perl6-synopsis] r9076 - doc/trunk/design/syn

2006-05-01 Thread james
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, undef,