Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
        f();
        print Dumper( $_, $a );
    }
    
  2. or download this
    map { f(); g( $_ ) } @a;
    
  3. or download this
    { map { my $x = $_; f(); g( $x ) } ( my @tmp = @a ) }