Help for this page

Select Code to Download


  1. or download this
    my @countries = (
       "India",
    ...
    if ( grep { $_ eq $country } @countries ) {
       print "True";
    }
    
  2. or download this
    my @countries = (
       "India",
    ...
          last;
       }
    }
    
  3. or download this
    my @countries = (
       "India",
    ...
    if ($countries{$country}) {
       print "True";
    }