Help for this page
$ perl -e '%x=(1 => 2); if(@x{1, 2}) { print "yes\n" } else { print "n +o\n" }' no
$ perl -e '%x=(1 => 2); if(@{[@x{1, 2}]}) { print "yes\n" } else { pri +nt "no\n" }' yes