- or download this
for(1 .. 100) {
print if $_ < 50;
}
- or download this
for(grep {$_ < 50} (1 .. 100)) {
print;
}
- or download this
$array_ref = [1 .. 10000];
for(@$array_ref) {
print;
}
- or download this
$array_ref = [1 .. 10000];
for($i=0; $_ = $array_ref->[$i] ;$i++) {
print;
}