Help for this page

Select Code to Download


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