Help for this page

Select Code to Download


  1. or download this
    sub f {
        @foo = ( 1, 2 );
    ...
    foreach ( f() ) {
        print @{$_};
    }
    
  2. or download this
    sub f {
        @foo = ( 1, 2 );
    ...
    foreach ( f() ) {
        print @{$_};
    }