- or download this
INIT::thisvar;
INIT::thatvar
- or download this
INIT::getInitvars()->{thisvar};
INIT::getInitvars()->{thatvar};
- or download this
my $initHash = INIT::getInitvars()
$initHash->{thisvar};
$initHash->{thatvar};
- or download this
package INIT;
use Exporter;
...
sub _dynamicStuff {
# compute stuff and return a hash
}