if (exists $foo->{bar}){ .. will not run .. }
if ($foo->{bar}) {...}
if (exists $foo->{bar}){ .. will run .. }
if (exists $foo->{bar}){ .. will not run .. } if ($foo->{bar}->{baz}) {...} if (exists $foo->{bar}){ .. will run .. }
I am certainly a perl novice.
if (exists $foo->{bar}){ .. will not run .. } if ($foo->{bar}->{baz}) {...} if (exists $foo->{bar}){ .. will run .. }