Help for this page

Select Code to Download


  1. or download this
    # note: adjusted @EXPORT_OK in place of @EXPORT
    
    ...
    sub repl { print "&Orig::repl runs (O No!)\n" } 
    
    1;
    
  2. or download this
    package Repl;
    use warnings;
    ...
    sub newfunc { print "&Repl::newfunc runs $/"; }
    
    1;