Help for this page

Select Code to Download


  1. or download this
    -xLEVEL
    
    ...
    
    If LEVEL is at least 7, "if" statements will be translated into
    equivalent expressions using "&&", "?:" and "do {}"; for instance
    
  2. or download this
    lanx@nc10-ubuntu:~$ perl -MO=Deparse,-x7 -e 'if($a){print $b}'
    $a and do {
        print $b
    };
    -e syntax OK