Help for this page
Package Utils; @EXPORT = qw(sub1 sub2); ... Code for sub2 here return; }
#!/usr/bin/perl -w use strict; BEGIN {push @INC, qq(/path/to/module/Utils);} use Utils;
&Utils::sub1(); &Utils::sub2();