Help for this page

Select Code to Download


  1. or download this
    sub x { my @a = ( 1, 2, 3 ); \@a }
    sub y { x() }
    ## or
    sub x { my @a = ( 1, 2, 3 ); }
    sub y { [ x( ) ] }