Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 4, 2012 08:43
Show Gist options
  • Select an option

  • Save ynonp/3046136 to your computer and use it in GitHub Desktop.

Select an option

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