Help for this page
print "found" if scalar @ary;
print "found" if grep { /one/ } values %hash;
print "found" if grep { $_ eq 'one' } values %hash;