Help for this page
use strict; use warnings; ... $exeif = '!exists $hash{baz}'; print "Single quotes, non-existing key: <$exeif>\n"; testAndExec $exeif;
Double quotes, existing key: <!exist bar> Not executing this time. ... Single quotes, non-existing key: <!exists $hash{baz}> This is executed!