##
a.pl {v1 = "New file" v2 = "New id" }
####
b.pl {print v1 v2 ==>this should be printing the updated v1 v2}
####
#!/usr/bin/perl
package vardeclare;
use strict;use warnings;
use Exporter;
our @ISA = 'Exporter';
our @EXPORT = qw($MASTERLOGFILE);
our ($MASTERLOGFILE, $MASTERID);
$MASTERLOGFILE="LOGFILE not defined";
$MASTERID="0000000";