- or download this
my $foo = defined($some_hash{bar}) and $some_hash{bar};
- or download this
( my $foo = defined($some_hash{bar}) ) and $some_hash{bar};
- or download this
my $foo = defined($some_hash{bar}) && $some_hash{bar};
- or download this
my $foo = ( defined($some_hash{bar}) and $some_hash{bar} );