in reply to object oriented module question
Inheritance in Perl is by using @ISA variable. Check this.
here MyPackage is a Text::CSV and you can access the functions in Text::CSV like any other function of MyPackage. please refer to perlboot for details.package MyPackage; use vars qw(@ISA); @ISA = qw(Text::CSV); ... ... rest of your code ... ...
Cheers !
--VC
|
|---|