Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use 5.010;
    ...
    say "$_";
    }
    __END__
    
  2. or download this
    $ perl mango1.pl 
    title is mango
    ...
    key: Lehi , value: Mr. Burns
    key: Jews , value: the Homeland
    key: Nephi , value: Rory Calhoun
    
  3. or download this
    sub hashify_words  {
    use strict;
    use warnings;
    ...
    print_hash(\%hash);
    return \%hash;
    }