peterk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl -w use strict; use Config::Std; my ($k, $v); read_config 'tst.cfg' => my %config; while(($k, $v) = each(%config)) { print "for $k, value is: " . $v . "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Config::Std requirements question
by jhourcle (Prior) on Jun 05, 2006 at 17:05 UTC |