-
-
Save ynonp/3046136 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
| use v5.14; | |
| use MooseX::Declare; | |
| role EvilMonster { | |
| requires 'eat_brains'; | |
| before eat_brains( Num $enemies ) { } | |
| } | |
| class Zombie with EvilMonster { | |
| method eat_brains( Num $enemies ) { warn 'Yummy ...' } | |
| } | |
| my $z = Zombie->new; | |
| $z->eat_brains( 7 ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment