Help for this page

Select Code to Download


  1. or download this
    yours makes %names = name => bob => jane
                                 joe => sue
                         name2 => john => me
                                  oh => my
    
  2. or download this
    yours makes %names = name => first => bob 
                                 second => jane
    ...
                                  second => me
                                  third => oh 
                                  fourth => my
    
  3. or download this
    use strict;
    my %names;
    ...
      $names{$label}{"third"} = {$name3} 
      $names{$label}{"fourth"} = $name4;
    }