Help for this page

Select Code to Download


  1. or download this
    package Thingy;
    
    ...
      my ($self) = @_;
      return Thingy::Cog->new;
    }
    
  2. or download this
    sub get_cog {
      my (@self) = @_;
      return( (ref($self) . "::Cog")->new );
    }