- or download this
$a = $b unless $error;
- or download this
while ($a < $b) if not $error
{ $a++; }
- or download this
$a++ while ! $error && $a < $b;
...
}
do { $a++ while $a < $b } if ! $error;
- or download this
$a++ while not $error || $a >= $b;
$a = $b unless $error or $a >= $b;