alih110 has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: How to print array containing the perl hash
by ikegami (Patriarch) on Jun 11, 2008 at 10:07 UTC

    What hash? It appears from that output that $self->genMap() returns a list of references to arrays.

    Data::Dumper can be used to help you debug.

    use Data::Dumper; print(Dumper(\@commandArgs));
Re: How to print array containing the perl hash
by Anonymous Monk on Jun 11, 2008 at 09:55 UTC