On Wed, Jun 01, 2011 at 09:07:45AM -0700, eventual wrote:
> use Data::Dumper;
>
> Hi,
> Can someone give me a few examples on the purpose of use Data::Dumper;
> I tried reading but I could not understand.
> Thanks
Data::Dumper is a useful modules for converting perl data structures into a
string
On Wed, Jun 1, 2011 at 6:07 PM, eventual wrote:
> use Data::Dumper;
>
> Hi,
> Can someone give me a few examples on the purpose of use Data::Dumper;
> I tried reading but I could not understand.
> Thanks
use Data::Dumper;
simply tells perl to load the Data::Dumper module. You can then use the
use Data::Dumper;
Hi,
Can someone give me a few examples on the purpose of use Data::Dumper;
I tried reading but I could not understand.
Thanks