Help for this page

Select Code to Download


  1. or download this
        else {
            for (values %$t_hash) { $total += $_ }
            # (use the statement modifier for if preferred)
        }
    
  2. or download this
    sub sum_hash {
      my $href = shift;
      my $total = 0;
    ...
      }
      return $total;
    }