Help for this page

Select Code to Download


  1. or download this
    package Foo;
    sub new {
    ...
        my $self = {};
        bless $self, $class;
    }
    
  2. or download this
    use Foo;
    my $one = Foo->new;
    my $second = Foo->new;