Created
August 11, 2010 20:23
-
-
Save wchristian/519673 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Local::Patched::Foo; | |
use strict; | |
use warnings; | |
no warnings 'redefine'; | |
use parent 'Exporter'; | |
use constant functions => qw( baz ); | |
use Foo functions; | |
our @EXPORT = functions; | |
sub Foo::qux { | |
print 2; | |
}; | |
1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment