Help for this page

Select Code to Download


  1. or download this
     bless $self;
    
     ## now, set up XML::Parser;
     $parser->parsefile ("/path/to/some/file/$id.xml");
     return $self;
    
  2. or download this
        bless $self, $class;
    
        $self->init();
    
        return $self;
    
  3. or download this
    sub init {
        my $self = shift;
    ...
    
        return;
    }