Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    } @interesting_keys;
    
    print Dumper(\%small_hash);
    
  2. or download this
    my %small_hash =
            map { $_ => $hash{$_} }
            grep { $hash{$_} }
            @interesting_keys;
    
  3. or download this
    $VAR1 = {
              'a' => 1
            };