Skip to content

Instantly share code, notes, and snippets.

@autarch
Created November 4, 2014 06:05
Show Gist options
  • Select an option

  • Save autarch/af192c0d248edb6a5420 to your computer and use it in GitHub Desktop.

Select an option

Save autarch/af192c0d248edb6a5420 to your computer and use it in GitHub Desktop.
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