- or download this
MACRO (COMPILED & DEPARSED): while ($var3 < $cons4) {
$body6;
...
++$var5
}
- or download this
MACRO (COMPILED & DEPARSED): $var1 = $cons2;
while ($var3 < $cons4) {
...
continue {
++$var5
}
- or download this
SOURCE (COMPILED & DEPARSED): my $x;
while ($x < 8) {
...
}
'???';
- or download this
SOURCE (COMPILED & DEPARSED): my $x;
$x = 0;
...
return $_[0] * fact($_[0] - 1);
}
- or download this
REORDER: $var3 = $1;$cons4 = $2;$body6 = $3;$var5 = $4;
- or download this
REORDER: $var1 = $1;$cons2 = $2;$var3 = $3;$cons4 = $4;$body6 = $5;$va
+r5 = $6;
- or download this
$i = 0;
while ($i < 10) {
...
++$i
}