- or download this
my $value;
while (condition) # or for loop
{
$value <op>= something;
}
- or download this
my $sum;
$sum += $_ for @nums;
- or download this
my $valid;
while (<DATA>)
...
next if /INVALID/;
$valid .= $_;
}
- or download this
my $product;
$product *= $_ for @nums;