9 lines
197 B
Perl
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.";
|
|
} |