Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my $found = 0;
for my $i (0 .. $#array) {
if ($array[$i] eq 'foo') {
print "'foo' found at position: $i\n";
$found++;
last;
}
}
print "'foo' not found\n" unless ($found);
@test=qw(a b c d foo e f g h);
for (0 .. $#test) {print && last if($test[$_] eq "foo")};