in reply to reloading of module

supposed your module has a package My::Module you can do
  delete $INC{"My/Module.pm"};
then requiring again it will do the right thing.
see perldoc -f require

update: actually, i should read the docs, too. the filename is stored in %INC, so if you have module.pl, you do delete $INC{"module.pl"}

Replies are listed 'Best First'.
Re^2: reloading of module
by £okì (Scribe) on Dec 30, 2004 at 21:30 UTC
    Hmm, I suppose I could build them as modules. . Not how they are set up right now but it wouldn't take much. Thanks.
      or you might be able to just do "module.pl";
      see perldoc -f do