- or download this
$ perl -MData::Dumper -e 'my $h; $h->{x}++ if exists $h->{x}; print Du
+mper($h)'
$VAR1 = {};
$ perl -MData::Dumper -e 'my $h; $h->{x}++ if defined $h->{x}; print D
+umper($h)'
$VAR1 = {};
- or download this
if ($h and exists $h->{x})
- or download this
if ($h and exists $h->{a} and exists $h->{a}{b} and exists $h->{a}{b}{
+foo})