S06 
    http://dev.perl.org/perl6/synopsis/S06.html

under "Flattening argument lists" (which I hope will be renamed
"Spreading arrays used as arguments") says this is OK:

sub foo($x, $y, $z) {...}    # expects three scalars
foo([EMAIL PROTECTED]);           # okay:  @onetothree flattened to
                             #    three args

but I have submitted examples/flatten-arg-lists.p6 which fails with
this message:

No compatible subroutine found: &foo
App "&foo" [] [Syn "*" [Var "@onetothree"]]

when the above call is made.

-- 
        Carter's Compass: I know I'm on the right track when,
           by deleting something, I'm adding functionality.

Reply via email to