Help for this page

Select Code to Download


  1. or download this
    sub hpairs (\%) {
        my $href = shift;
    ...
    __END__
    admin earns 600
    boss earns 1000
    
  2. or download this
    sub hpairs (\%) {
        use enum 'KEY', 'VAL';
    ...
    } grep {
        $_->[VAL] > 500
    } hpairs %salary;