in reply to Re: global variables defined in an external file
in thread global variables defined in an external file

got it! thanks
package x; use warnings; use strict; use Exporter 'import'; our @EXPORT = qw/$a_template $sc/; our $a_template = "a12 a10 a5"; our $sc = 'All'; our @ar = qw/the variables/; our %ha = (exported => ' succesfully.'); 1;
many thanks