Created
November 4, 2014 06:05
-
-
Save autarch/af192c0d248edb6a5420 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Foo; | |
| use v5.16; | |
| use Moose; | |
| use overload q{""} => '_stringify'; | |
| sub _stringify { 42 } | |
| say Moose->VERSION; | |
| say $_ for __PACKAGE__->meta->get_method_list; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment