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

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:31:24 2006 New Revision: 9050 Modified: doc/trunk/design/syn/S02.pod Log: * S02: even more long dot fixes. Modified: doc/trunk/design/syn/S02.pod == --- doc/trunk/design/syn/S02.po

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

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:33:08 2006 New Revision: 9051 Modified: doc/trunk/design/syn/S04.pod Log: * S04: minor typo cleanup. * S04: Document a consequence caused by the statement-terminating end-of-line block rule: # Without the trailing comma, this becomes a code bloc

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

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 01:35:22 2006 New Revision: 9052 Modified: doc/trunk/design/syn/S12.pod Log: * S12: The example @array.=sort is better written as @array .= sort as it's not impossible for "=sort" to be a postfix operator on its own. Modified: doc/trunk/design/s

Re: A shorter long dot

2006-05-01 Thread Smylers
Jonathan Lang writes: > Larry Wall wrote: > > > I don't see much downside to \. as a long dot. > > The only remaining problem that I see for the long dot is largely > orthogonal to the selection of the first and last characters - namely, > that your only choice for filler is whitespace. Why's t

Re: A shorter long dot

2006-05-01 Thread Dr.Ruud
"Jonathan Lang" schreef: > When is the last time that you saw an underscore-only method name? sub _{print"$_\n"}; -- Affijn, Ruud "Gewoon is een tijger."

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

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 08:43:47 2006 New Revision: 9069 Modified: doc/trunk/design/syn/S03.pod Log: * S03: Correct the perl5ish "map" example to have an extra comma. 17:44 < TimToady> audreyt: foo {...} 1,2,3 is wrong, needs a comma. Modified: doc/trunk/design/syn/S03.pod ===

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

2006-05-01 Thread autrijus
Author: autrijus Date: Mon May 1 09:18:16 2006 New Revision: 9071 Modified: doc/trunk/design/syn/S06.pod Log: * S06: Add Whatever to the list of "Undefined types". Modified: doc/trunk/design/syn/S06.pod == --- doc/tr

[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: doc/trunk/design

Re: A shorter long dot

2006-05-01 Thread Paul Johnson
On Mon, May 01, 2006 at 01:15:58PM +0100, Smylers wrote: > Jonathan Lang writes: > > > Larry Wall wrote: > > > > > I don't see much downside to \. as a long dot. > Folks want to be able to line stuff up, and to split statements over > multiple lines. This is now possible. You know, I'm still

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, u

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

2006-05-01 Thread larry
Author: larry Date: Mon May 1 17:13:17 2006 New Revision: 9091 Modified: doc/trunk/design/syn/S03.pod Log: Explained why any has to be different from any . Modified: doc/trunk/design/syn/S03.pod == --- doc/trunk/des

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

2006-05-01 Thread larry
Author: larry Date: Mon May 1 22:36:54 2006 New Revision: 9096 Modified: doc/trunk/design/syn/S02.pod Log: Refined some notions about how we want to support numerics long term. Modified: doc/trunk/design/syn/S02.pod ===