&error("Invalid input") unless &valid($input);
$i *= 2 until $i > $j;
print " ", ($n += 2) while $n < 10;
&greet($_) foreach @person;
These all work just as (we hope) you would expect. That is, each one
could be rewritten in a similar way to rewriting the
if-modifier example earlier. Here is one:
while ($n < 10) {
print " ", ($n += 2);
}
The expression in parentheses inside the print
argument list is noteworthy because it adds two to
$n, storing the result back into
$n. Then it returns that new value, which will be
printed.
As we mentioned in relation to the if modifier,
the control expression (on the right) is always evaluated first, just
as it would be in the old-fashioned form.
With the foreach modifier, there's no way to
choose a different control variable -- it's always
$_. Usually, that's no problem, but if you
want to use a different variable, you'll need to rewrite it as
a traditional foreach loop.
 |  |  |
10.2. The until Control Structure |  | 10.4. The Naked Block Control Structure |