Help for this page

Select Code to Download


  1. or download this
    sub foo { return qw(a b c d) }
    ( foo() )[1,3];
    ...
    # And effectively the same as
    @a = foo();
    @a[1,3];