NAME |
Synopsis |
Description |
Constructor and initialization |
Sub (not Method): get_config() |
Required Modules |
Resources |
Author |
Copyright |
NAME
Synopsis#!/usr/bin/perl use strict; use warnings; use Local::Config; # ---------------- my($config) = Local::Config::get_config(); print map{"$_ => $$config{$_}. \n"} sort keys %$config;
Description
Constructor and initialization
Sub (not Method): get_config()Returns a copy of the config hash ref. Required ModulesResourceshttp://savage.net.au/Perl-modules/html/local-module-overview.html Author
Home page: http://savage.net.au/index.html CopyrightAustralian copyright © 2006, Ron Savage. All rights reserved. All Programs of mine are 'OSI Certified Open Source Software'; you can redistribute them and/or modify them under the terms of The Artistic License, a copy of which is available at: http://www.opensource.org/licenses/index.html |
| Top of page |