Help for this page
package AbstractClass; sub new { ... sub methodTwo { print "Error: Use of undefined Abstract Method\n"; }
package SomeObject; @ISA = ("AbstractClass"); sub methodOne { print "Doing the real function\n"; }