Help for this page

Select Code to Download


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