Help for this page

Select Code to Download


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