Help for this page

Select Code to Download


  1. or download this
    use subs 'open';
    sub open
    ...
        print "opening file: @_\n";
        CORE::open(@_);
    }
    
  2. or download this
        CORE::open($_[0], $_[1]);
    
  3. or download this
    use subs 'open';
    
    ...
        print "error info: $!\n" if $!;
        print "more error info: $^E\n" if $^E;
    }