Help for this page

Select Code to Download


  1. or download this
    print OUT $hash{key1};
    print OUT $hash{key2};
    etc...
    
  2. or download this
    my @keys = ('one', 'two', 'three');
    for (@keys) {
        print OUT $hash{$_};
    }