Is there a way to re-export the variables that are imported from another module.
Thanks
Is there a way to re-export the variables that are imported from another module.
Thanks
Yes, just like any other package variables.
use Module qw( $Var );
our @EXPORT_OK = qw( $Var );
use Exporter qw( import );