Last active
August 29, 2015 13:56
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 main; | |
use Moops; | |
class Character { | |
has name => (is => 'ro', isa => Str); | |
method BUILD ($p) { | |
my $race = $p->{race} // 'Human'; | |
Moo::Role->apply_roles_to_object($self, "Race::$race"); | |
} | |
} | |
namespace Race { | |
role HalfElf; | |
role Elf with HalfElf; # all elves are half-elves | |
role Dwarf; | |
role Gnome; | |
role Halfling; | |
role Human; | |
role Wizard { | |
method cast_spell () { | |
say "Abracadabra!"; | |
} | |
} | |
} | |
my $james = Character->new( | |
name => 'Gandalfini', | |
race => 'Wizard', | |
); | |
$james->cast_spell | |
if $james->DOES('Race::Wizard'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment