Help for this page

Select Code to Download


  1. or download this
    open(QTREES,$file1) or return print "foo";
    
  2. or download this
    open(QTREES,$file1) or (print "foo") && return;
    
  3. or download this
    $ touch file1; touch file2
    
    ...
        open QTREES, 'file1' or return print STDERR "Error opening file1: 
    +$!";
        open RTREES, 'file2' or (print STDERR "Error opening file2: $!") &
    +& return;
    }