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