Help for this page

Select Code to Download


  1. or download this
    // UNTESTED
        for(int a = 1; a<10; a++)
        {
            printf("%d\n",a);
        }
    
  2. or download this
    // UNTESTED
    // UPDATED: de-obfuscated
    ...
                a++;
            }
        }
    
  3. 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
    
  4. or download this
    perl -MO=Deparse -e "for (;<>;){print}"
    while (defined($_ = <ARGV>)) {
        print $_;
    }
    -e syntax OK