Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    for my $name (@foo) {
        print "$name : $bar{$name} \n" if exists $bar{$name};
    }
    
  2. or download this
    tom : 54
    steve : 56
    roger : 99