Help for this page

Select Code to Download


  1. or download this
    sub myprint { print "MYPRINT: ", @_; }
    
    ...
        # Doesn't work
    $printfunc = \&CORE::print;
    $printfunc->("hello\n");
    
  2. or download this
    sub coreprint { print @_; };
    $printfunc = \&coreprint;