Include variables from external perl script



Consider the example below...



Config.pl
======

#!/usr/bin/perl -w

my $value = "abc";

1;

Script.pl
======
require "Config.pl";

print $value; # How to do this, beside using .pm?


Thanks.

.