Help for this page

Select Code to Download


  1. or download this
      package Factory;
    
    ...
        my ($class, $thing) = @_;
        # pretend there's generic magic stuff here
      }
    
  2. or download this
      package SpecialFactory;
      use base qw(Factory);
    
      sub thingClass { 'SpecialThing' }