Help for this page

Select Code to Download


  1. or download this
    sub DESTROY
    {
        my $self = shift;
        $self->Finish();
    }
    
  2. or download this
    {
        package Class;
    ...
            $self->Finish();
        }
    }
    
  3. or download this
    sub Class::DESTROY
    {
        my $self = shift;
        $self->Finish();
    }