in reply to Using only one subroutine from module file
For importing only a limited number of subroutines, add a list of the subroutine names to your use statement.
use Sheets qw(make_files);See perldoc perlmod and perldoc Exporter for more on this.
|
|---|