Help for this page

Select Code to Download


  1. or download this
    sub new
    {
         my $class = shift;
    ...
    my $test = Foo->new(handle => $dbh);
    
    my $handle = $test->{handle};
    
  2. or download this
    my @imports = qw [ foo bar ];
    
    sub new
    ...
    
         return bless(\%self, $class);
    }