- or download this
// UNTESTED
for(int a = 1; a<10; a++)
{
printf("%d\n",a);
}
- or download this
// UNTESTED
// UPDATED: de-obfuscated
...
a++;
}
}
- or download this
# UNTESTED
for (;EXPR;) BLOCK # leave first and third EXPRs blank to be
...
VAR = shift @list) BLOCK # somewhat like
# foreach VAR (LIST) BLOCK
# without the usual aliasing
- or download this
perl -MO=Deparse -e "for (;<>;){print}"
while (defined($_ = <ARGV>)) {
print $_;
}
-e syntax OK