programming-examples/perl/Hash/Is a key in a hash.pl
2019-11-15 12:59:38 +01:00

9 lines
197 B
Perl

$hash{fruit} = apple;
$hash{sandwich} = hamburger;
$hash{drink} = bubbly;
if (exists($hash{'vegetable'})) {
print "Key is in the hash.";
} else {
print "Key is not in the hash.";
}