Does Perl have inheritance? What is the SUPER keyword?
Answer
Yes, Perl supports inheritance. We can read about it in the official docs.
We also can read about SUPER keyword that is used to call a method from the parent class. It gives an example about how we can apply inheritance.