require

require "Module.pm";

The code of Module.pm is loaded and executed. require keeps track of the loaded modules by updating @INC. If it is necessary to re-load a module, the corresponding entry has to be cleared first:

#
# reloading a module
#
delete $INC{ Module.pm}; 
require "Module.pm";