What does the function declaration "sub function($$)" mean?

Posted by Neeraj on Stack Overflow See other posts from Stack Overflow or by Neeraj
Published on 2010-03-20T22:44:24Z Indexed on 2010/03/21 3:01 UTC
Read the original article Hit count: 354

Filed under:
|
|

I have been using Perl for some time, but today I came across this code:

sub function1($$)
{
   //snip
}

What does this mean in Perl?

© Stack Overflow or respective owner

Related posts about perl

Related posts about subroutines