Help for this page

Select Code to Download


  1. or download this
    # base class
    package AbstractMyClass;
    ...
        
        return $this;
    }
    
  2. or download this
    use AbstractMyClass;
    use MyClass;
    ...
    my $amc = new AbstractMyClass ();
    my $mc = new MyClass ();