* 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 }            # okay
> >>     .doit(1,2,3): { $^a <=> $^b }       # okay
> >>+    .doit(1,2,3): { $^a <=> $^b }       # okay
> >
> >>+    .doit:{ $^a <=> $^b }              # okay
> >>+    .doit():{ $^a <=> $^b }            # okay
> >>+    .doit(1,2,3):{ $^a <=> $^b }       # okay
> >>+    .doit(1,2,3):{ $^a <=> $^b }       # okay
> >
> >My eyes must be playing tricks on me -- I can't see the
> >difference between the last two lines in each of the above
> >blocks.  What am I missing?
> >
> A space between the colon and the opening brace ;-)

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 <=> $^b }       # okay
+    .doit(1,2,3):{ $^a <=> $^b }       # okay

(Neither can I.)

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

Reply via email to