Modify classes
Rectangle->meta->add_method('area' => sub { ... });
Rectangle->meta->add_attribute('color' => (is => 'rw', isa => 'Str'));
Rectangle->meta->remove_attribute('height');
Shape->meta->remove_method('move_to');
| moose |
Rectangle->meta->add_method('area' => sub { ... });
Rectangle->meta->add_attribute('color' => (is => 'rw', isa => 'Str'));
Rectangle->meta->remove_attribute('height');
Shape->meta->remove_method('move_to');