Help for this page

Select Code to Download


  1. or download this
    $ perl -mO=Deparse -e 'if ( $1 eq 'A' || $1 eq 'B' ) { }'
    
    if ($1 eq 'A' or $1 eq 'B') {
        ();
    }
    
  2. or download this
    if( ($1 eq 'A') or ($1 eq 'B') ) { ...}