Help for this page

Select Code to Download


  1. or download this
      @info = stat($file) || die;   # oops, scalar sense of stat!
      @info = stat($file) or die;   # better, now @info gets its due
    
  2. or download this
      my @Candidates = @_ or return;
      my @Candidates = @_ || return;