if (defined(my $foo = exists $lookup{$bar})) { .... } #### if (exists $lookup{$bar}) { my $foo = $lookup{$bar}; ... }