Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @terms = qw(Mom Wife Son Daughter);
    my %fam_old = map{ $name => { $_,1 }} @terms;
    print Dumper \%fam_old,"\n";
    
  2. or download this
    
    $VAR1 = {
    ...
                           'Mom' => 1
                           };
             }