Help for this page

Select Code to Download


  1. or download this
    use Carp;
    use vars qw(%data);
    
    ...
            $r
        } keys %data;
    }
    
  2. or download this
    init_comparison_for string => qw(fname lname email address position);
    init_comparison_for numeric => qw(id salary zip);
    
    print $employee{$_}->{fname}, " ", $employee{$_}->{lname}
        for sortedkeys %employee, qw(r-salary id);