Help for this page

Select Code to Download


  1. or download this
    my %data;
    $data{A} = [qw(a data goes here)];
    $data{B} = [qw(b data here too)];
    $data{C} = [qw(and here is c data)];
    
  2. or download this
    my %seen_in;
    for my $key (sort keys %data) {
    ...
        $seen_in{$value} .= $key;
      }
    }