Help for this page

Select Code to Download


  1. or download this
    use strict;     # the obligitory
    use warnings;   # use strict and warnings
    ...
    my $makedigest = \&digestit;
    my %ldb = $makedigest->(\%lemployee, $lsth);
    my %rdb = $makedigest->(\%remployee, $rsth);
    
  2. or download this
    sub digestit
    {
    ...
        }
        return %newdbhash;
    }