- or download this
push @{$p2i{sp}}, $ipr; # $ missing for key reference
- or download this
push @{$p2i{$sp}}, $ipr;
- or download this
print "$key\t$p2i{$key}\n";
- or download this
print "$key\t@ {$p2i{$key} }\n"; # need @ to dereference array
- or download this
if (exists $p2i{$user}) {
print "$user is in the hash. \n";if (exists $p2i{$user}) {
print "$user is in the hash. \n";
- or download this
if (exists $p2i{$user}) {
print "$user is in the hash. \n";