Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    foreach my $all (%$info) {
        print "$all\n";
    }
    
  2. or download this
    sub test {
        my @name  = qw(Joe mary ann pete amy jerry);
    ...
        @email_of{@name} = @email;
        return \%email_of;
    }