Help for this page

Select Code to Download


  1. or download this
    if (!open my $fh, "<", "filename")  {
        warn "Whatever";
        return;
    }
    
  2. or download this
    open my $fh, "<", "filename" or do {warn "Whatever"; return;};