Help for this page

Select Code to Download


  1. or download this
    $a=$b || $c;
    $a=$b or $c;
    
  2. or download this
    $a=($b || $c);
    ($a=$b) or $c;
    
  3. or download this
    @info = stat($file) || die;     # oops, scalar sense of stat!
    @info = stat($file) or die;     # better, now @info gets its due
    
  4. or download this
    $a=$b || $c
    
  5. or download this
    $a=$b or $c
    
  6. or download this
    $a=0 or 1;
    $b=0 || 1;