in reply to Re: How to call specific method of a module in our program?
in thread How to call specific method of a module in our program?

Thanks a Lot Corion!! It's working.
  • Comment on Re^2: How to call specific method of a module in our program?

Replies are listed 'Best First'.
Re^3: How to call specific method of a module in our program?
by jethro (Monsignor) on Nov 20, 2009 at 09:46 UTC
    Are you sure you are not imagining things? Data::Dumper's only export is the sub Dumper, so there shouldn't be any difference between specifying Dumper and not doing it. See the source of Data::Dumper:

    BEGIN { @ISA = qw(Exporter); @EXPORT = qw(Dumper); @EXPORT_OK = qw(DumperX);