Help for this page

Select Code to Download


  1. or download this
    if (!$line || $!) {
    
  2. or download this
    if (open(FH, $filename)) {
        # Here $! is meaningless.
    ...
    }
    # Since here we might have either success or failure,
    # here $! is meaningless.
    
  3. or download this
    my $isOpen = open($handle, $templateLocation) or die "foo: $!";