Re: hash question

2005-09-06 Thread Shobha Deepthi
Its should be , print $ky, ":" , $myhash{$ky}, "\n"; Shobha Deepthi V The statement below is true. The statement above is false. Gergely Buday wrote: Hi there, do you have a clue why is this not working? The interpreter complains about a syntax error in line 7 n

Re: Query on File::Find

2005-07-07 Thread Shobha Deepthi
Hi Jeff, Thanks for your help. That really worked! Shobha Deepthi V The statement below is true. The statement above is false. Jeff 'japhy' Pinyan wrote: On Jul 7, Shobha Deepthi said: But I want to pass another parameter to find_and_instantiate_commav_file subroutin

Query on File::Find

2005-07-06 Thread Shobha Deepthi
find method and how to access these within the subroutine. -- Shobha Deepthi V The statement below is true. The statement above is false.

Re: use strict and load

2005-07-04 Thread Shobha Deepthi
Youare trying to print the value of $v before its declaration print "value of v is $v\n"; Try defining this variable before this print statement. Shobha Deepthi V The statement below is true. The statement above is false. Ken Killer wrote: I tried to add 'my'