- or download this
my $reference_to_value;
if ($reference_to_value = exists $hash{$key}) {
print "value is $$reference_to_value\n";
}
- or download this
if (exists $hash{$key}) {
print "value is $hash{$key}\n";
}
- or download this
$hash{$key}{'a'} = 'A';
$hash{$key}{'b'} = 'B';
$hash{$key}{'c'} = 'C';