Re: Basic Perl question

2002-04-25 Thread csaba . raduly
On 22/04/2002 06:49:52 perl-win32-users-admin wrote: >Dear All, >I have seen one perl code with the following stuff > >sub func_name($$$) >{ >$a = @_; >} > >My question is , > >What is the purpose of $$$ in the function definition. > It tells Perl that func_name expects three scalars. Check

Basic Perl question

2002-04-24 Thread ponnam . balam
Dear All, I have seen one perl code with the follwing stuff sub func_name($$$) { $a = @_; } My question is , What is the purpose of