Overriding Methods

Learn about inheritance and method overriding in Perl.

We'll cover the following...

Inheritance and method overriding

As with attributes, subclasses may override methods. Imagine a light that we can't extinguish:

package Glowstick {
use Moose;
extends 'LightSource';
sub extinguish {}
}

Calling extinguish() on ...