- or download this
while () { ... }
- or download this
while (1) { ... }
- or download this
$ perl -MO=Deparse -e 'while () {print "tick!\n"}'
while (1) {
print "tick!\n";
}
- or download this
$ perl561 -MO=Deparse -e 'while () {print "tick!\n"}'
for (;;) {
print "tick!\n";
}