Help for this page

Select Code to Download


  1. or download this
    @common = inter ( \%foo, \%bar, \%joe );
    sub inter {
    ...
        return grep { $seen{$_} == @_ } keys %seen;
    }
    =======================================================
    
  2. or download this
    __DATA__
    my %foo = (
    ...
        'four' => 8,
        'five' => 89,
    );
    
  3. or download this
    three five one two four