Help for this page

Select Code to Download


  1. or download this
    print "found" if scalar @ary;
    
  2. or download this
    print "found" if grep { /one/ } values %hash;
    
  3. or download this
    print "found" if grep { $_ eq 'one' } values %hash;