Ever get this error for a module you've written?
Use of inherited AUTOLOAD for non-method X() is deprecated
Put this at the top of your module:
package My::Module;
use Exporter;
our @ISA = 'Exporter';
our @EXPORT = qw(put the methods here);
And then in the main program:
use My::Module qw( the methods to import );
keywords: export import exporting