Help for this page

Select Code to Download


  1. or download this
    EXPR while EXPR;
    
  2. or download this
    EXPR while ( EXPR );
    
  3. or download this
    >perl -MO=Deparse -e"while() { print 1 }"
    while (1) {
    ...
    >perl -MO=Deparse -e"print 1 while;"
    syntax error at -e line 1, at EOF
    -e had compilation errors.