Help for this page
use Exporter; # require works; @ISA = 'Exporter'; @EXPORT_OK = qw(functions $variables @arrays); # I put this after the above, some put this above and then use "our". use strict;
# In the main script... use strict; ... # In the module... print $main::foo;