Help for this page

Select Code to Download


  1. or download this
    
    # an array of terms used to create hash1
    ...
    $occurs{113} = [ 'male', 'child' ];
    $occurs{114} = [ 'female' ];
    $occurs{115} = [ 'child', 'female' ];
    
  2. or download this
    my %tally = ();
    # Male on its own appeared twice
    ...
    # Child on its own appeared twice
    $tally{hash1_terms3} = 0;
    # and so on...