Help for this page

Select Code to Download


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