Re: r30205 - docs/Perl6/Spec

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

Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Leon Timmermans
On Fri, Apr 2, 2010 at 5:59 PM, Aristotle Pagaltzis pagalt...@gmx.de 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):{

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 ge...@broadwell.org wrote: On Fri, 2010-03-26 at 08:38 +0100, pugs-comm...@feather.perl6.nl wrote:      .doit: { $^a = $^b }              # okay      .doit(): { $^a = $^b }            

r30205 - docs/Perl6/Spec

2010-03-26 Thread pugs-commits
Author: lwall Date: 2010-03-26 08:38:16 +0100 (Fri, 26 Mar 2010) New Revision: 30205 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S05-regex.pod docs/Perl6/Spec/S06-routines.pod docs/Perl6/Spec/S12-objects.pod Log: [specs] Make it clear

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 }