-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
>> ==
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 =>
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";
}
=