Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    
    ...
              'c' => 'x',
              'a' => 'z'
          };
    
  2. or download this
    my @to_keep = qw{ a c };
    my %keepers;
    ...
              'c' => 1,
              'a' => 1
            };
    
  3. or download this
    my @to_keep = qw{ a c };
    my %keepers;
    ...
    $keepers1 = {
              'a' => 'c'
            };