Re: Basic Perl question
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
Dear All, I have seen one perl code with the follwing stuff sub func_name($$$) { $a = @_; } My question is , What is the purpose of