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: 380
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