In article <[EMAIL PROTECTED]>, Dan Anderson wrote:

> When I use the following code to dump a hash:
[...]
> I've figured out that I can use qw() to change the variable names, but
> is there any way to either get an output like the code that created the
> hash, or in the form:
> 
> $hash = {
>            album => "Prose Combat",
>            # etc...
>         }

Try...

use Data::Dumper

print Dumper(\$hash_ref);

(If I understood what you mean)

-Kevin


-- 
Kevin Pfeiffer


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to