Hello fellow monks.
I'm wondering what you think is the best way to keep several variables and constants in one (config-)file to be used by different scripts.
Before I used "use strict" and "my $var;" it was no problem. Simply a "require 'myconf.pm';" And I had all my vars ready.
So how would you handle these:
my $CONNECT ='DBI:mysql';
my $DB ='SUN';
my $KEYFILE ='key.csv';
my @FILES = <*.csv>;