- or download this
> perl -MO=Deparse -e 'while($x++ < 10){}'
while ($x++ < 10) {
();
}
- or download this
for(;$x++ < 10;){}
- or download this
> perl -MO=Deparse -e 'for(;();){}'
while (()) {
();
}
- or download this
> perl -MO=Deparse -e 'for($x;$y;$z){()}'
for ($x; $y; $z) {
();
}
- or download this
{
$x;
...
$z;
}
}