Help for this page

Select Code to Download


  1. or download this
    use MyModules::Config;
    
    # here's the singleton magic:
    # "new" recalls the existing instance if any.
    my $conf=Config->new();
    
  2. or download this
    package Config;
    
    ...
    # end
    1;