Help for this page

Select Code to Download


  1. or download this
    sub foo { ... }
    ...
    *foo = sub { ... }; # install new version of sub foo
    
  2. or download this
    package Foo;
    sub bar { ... }
    ...
    *::NewFoo = *::Foo; # or something like this
    
    NewFoo::bar(); # calls Foo::bar();