in reply to Re^3: Using Multiple Modules
in thread Using Multiple Modules
Thank you so much for your help. In my code I use .pm this way:
use runner_libs::CodesModule qw(exit_gracefully subprogram_runner warning_or_failure open_or_fail error_display cal_time start_time end_time trim CheckError);And the .pm exports this way:
package CodesModule; use Exporter 'import'; @EXPORT_OK = qw(exit_gracefully subprogram_runner warning_or_failure o +pen_or_fail error_display cal_time start_time end_time trim CheckErro +r);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Using Multiple Modules
by choroba (Cardinal) on Jan 22, 2016 at 18:32 UTC |