- or download this
$start = $a;
$end = ++$a;
for ($_ = $start; $_ <= $end; $_++) { ... }
- or download this
for (++$x .. $x++ . $x) { ... }
# starting at ++$x
# ending at $x++ . $x
# THE END HAS MODIFIED THE START
- or download this
print ++$x, ++$x, ++$x; # 333
- or download this
$x = 3;
print ++$x/$x--; # 3/4 => 0.75
- or download this
for (++$x .. $x++ . $x--) { ... }
# or
for (++$....$.++.$.--) { ... }