Help for this page

Select Code to Download


  1. or download this
    package main;
    no strict 'refs';
    *Foo::bar = sub { return __PACKAGE__ };
    print Foo::bar(); # prints 'main'
    
  2. or download this
    *Foo::bar = sub {
        return 'main';
    }
    ;
    print Foo::bar();