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 =( $name => { map{ $_=>1, } @terms} );
    print Dumper \%fam_old;
    
  2. or download this
    $VAR1 = {
              'Father' => {
    ...
                            'Daughter' => 1
                          }
            };