Re: whats the purpose of use Data::Dumper;

2011-06-01 Thread Michael Greb
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

Re: whats the purpose of use Data::Dumper;

2011-06-01 Thread Rob Coops
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

whats the purpose of use Data::Dumper;

2011-06-01 Thread eventual
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