my @myHash = (one => 2, two => 2);
if (!defined $myHash{three}) {
    print "three has not yet been defined\n";
}
