- or download this
our %GLOBAL = {
dir1 => "/path/to/directory"
dir2 => "/path/to/another"
};
- or download this
our %GLOBAL = (
dir1 => "/path/to/directory"
dir2 => "/path/to/another"
);
- or download this
our $GLOBAL = {
dir1 => "/path/to/directory"
dir2 => "/path/to/another"
};