Inheritance with Moose 

package Review;

use Moose;

extends 'Article';

has 'rating' => (is => 'rw', isa => 'StarRating');