Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Leon Timmermans
On Fri, Apr 2, 2010 at 5:59 PM, Aristotle Pagaltzis wrote: > He is saying he can’t see how these differ from each other: > >      .doit(1,2,3): { $^a <=> $^b }       # okay > +    .doit(1,2,3): { $^a <=> $^b }       # okay > > Or how these two differ from each other: > > +    .doit(1,2,3):{ $^a <=

Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Aristotle Pagaltzis
* Leon Timmermans [2010-03-27 09:40]: > On Sat, Mar 27, 2010 at 2:01 AM, Geoffrey Broadwell > wrote: > >On Fri, 2010-03-26 at 08:38 +0100, pugs-comm...@feather.perl6.nl wrote: > >>     .doit: { $^a <=> $^b }              # okay > >>     .doit(): { $^a <=> $^b }            # okay > >>     .doit(1

Re: r30205 - docs/Perl6/Spec

2010-03-27 Thread Leon Timmermans
A space between the colon and the opening brace ;-) Leon On Sat, Mar 27, 2010 at 2:01 AM, Geoffrey Broadwell wrote: > On Fri, 2010-03-26 at 08:38 +0100, pugs-comm...@feather.perl6.nl wrote: >>      .doit: { $^a <=> $^b }              # okay >>      .doit(): { $^a <=> $^b }            # okay >>  

Re: r30205 - docs/Perl6/Spec

2010-03-26 Thread Geoffrey Broadwell
On Fri, 2010-03-26 at 08:38 +0100, pugs-comm...@feather.perl6.nl wrote: > .doit: { $^a <=> $^b } # okay > .doit(): { $^a <=> $^b }# okay > .doit(1,2,3): { $^a <=> $^b } # okay > +.doit(1,2,3): { $^a <=> $^b } # okay > +.doit:{ $^a <=> $^b