Re: Couldn't understand the following message from Devel::Cover ...

2006-06-20 Thread Michael Cummings
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Paul Johnson wrote: > On Fri, Jun 16, 2006 at 12:43:11PM +0530, Rajanikanth Dandamudi wrote: > >> Hi All, >> >> Can some one help me understand why I am getting the following message >> on the following perl program : >> >> perl program >> ==

Re: Couldn't understand the following message from Devel::Cover ...

2006-06-16 Thread Paul Johnson
On Fri, Jun 16, 2006 at 12:43:11PM +0530, Rajanikanth Dandamudi wrote: > Hi All, > > Can some one help me understand why I am getting the following message > on the following perl program : > > perl program > > #!/usr/local/bin/perl > > %hsh = ( > ABC => -abc, > DEF =>

Couldn't understand the following message from Devel::Cover ...

2006-06-16 Thread Rajanikanth Dandamudi
Hi All, Can some one help me understand why I am getting the following message on the following perl program : perl program #!/usr/local/bin/perl %hsh = ( ABC => -abc, DEF => -def, ); for $key (keys %hsh){ print "Key = $key Value = $hsh{$key}\n"; } =