
newbie1000
New User
Nov 26, 2012, 9:53 AM
Post #1 of 7
(2703 views)
|
Data Dumper to print out hash values
|
Can't Post
|
|
Can you tell me how to use Data Dumper to print out the values in the hashes in the code below. #!/usr/bin/perl -w use strict; use App::Options ( options => [ qw(dbhost dbusername dbpassword homepage legacy) ], option => { storefront => { description => "storefront location", }, homepage => { default => "/usr/local/apache/htdocs/", }, legacy => { default => "/usr/local/apache/htdocs/dir", }, ); use Data::Dumper;
|