- or download this
package Test;
require Exporter;
...
{
print "[ key = ".$my_config->val("section", "key")."]\n";
}
- or download this
package globals;
require Exporter;
...
}
1;
- or download this
package Test;
require Exporter;
...
globals::init();
print "[ key = ".$globals::my_config->val("section", "key")."]\n";
}