Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -Mwarnings -le '1 == 0 ? 1 : (for (1) { 1 })'
    syntax error at -e line 1, near "(for "
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    $ perl -Mstrict -Mwarnings -le '1 == 0 ? 1 : (while (1) { 1 })'
    syntax error at -e line 1, near "(while"
    Execution of -e aborted due to compilation errors.