programming-examples/perl/Hash/Using keys function with hash reference variable.pl

16 lines
303 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl
use strict;
use warnings;
my %hash = ( A => "AA",
B => "BB",
C => "CC",
D => "DD",
E => "EE" );
my $hashReference = \%hash;
foreach ( keys( %$hashReference ) ) {
print( "The $_ goes $hashReference->{ $_ }.\n" );
}