Help for this page

Select Code to Download


  1. or download this
        open( FILE, "<read.me" )
            or  die "Can't read read.me: $!\n";
    
  2. or download this
        if(  ! open( FILE, "<read.me" )  ) {
            # Deal with the absense of this file
        }
    
  3. or download this
        open( FILE, "<read.me" );