Help for this page

Select Code to Download


  1. or download this
    package My
    
    ...
    # rest of methods
    sub method1 { ... }
    sub method2 { ... }
    
  2. or download this
    package My::XML;
    
    ...
    
    sub _init { ... }
    1;
    
  3. or download this
    use My;
    
    my $obj = My->new(source=>"xml");
    # Do whatever with $obj