- or download this
#FileOne.pl
package ProgramSpread;
...
}
return 1;
END{}
- or download this
#FileTwo.pl
package ProgramSpread; #The same package above
...
}
return 1;
END{}
- or download this
#using the package
require "FileOne.pl"; #File names containing the package
...
ProgramSpread::subroutine1();
ProgramSpread::subroutine2();
- or download this