Help for this page

Select Code to Download


  1. or download this
    >perl -wle"print( prototype( 'CORE::chomp' ) )"
    Use of uninitialized value in print at -e line 1.   <- Can't
    ...
    
    >perl -wle"print( prototype( 'CORE::push' ) )"
    \@@                                                 <- Can
    
  2. or download this
    BEGIN {
       *CORE::GLOBAL::push = sub(\@@) {
    ...
          return CORE::push(@$array, @_);
       };
    }