- or download this
package Foo::Bar;
use Carp;
...
$self->init(%opt);
return $self;
}
- or download this
package Foo::Bar::Baz;
use strict;
...
# do the actual init for this specific class
}
- or download this
#!/usr/bin/perl
use strict;
...
use Foo::Bar::Baz;
my $item = Foo::Bar::Baz->new();