Help for this page

Select Code to Download


  1. or download this
    for my $func qw(CORE::open open) {
        my $p = prototype $func;
        print "$func: ", defined $p ? $p : "(not overrideable)", "\n";
    }
    
  2. or download this
    CORE::open: *;$@
    open: (not overrideable)