Help for this page

Select Code to Download


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