Help for this page

Select Code to Download


  1. or download this
        $a = $b or $c;     # bug: this is wrong
        ($a = $b) or $c;   # really means this
        $a = $b || $c;     # better written this way
    
  2. or download this
        @info = stat($file) || die;    # oops, scalar sense of stat!
        @info = stat($file) or die;    # better, now @info gets its due
    
  3. or download this
        open INFO, "< datafile"  or die "can't open datafile: $!";