In the iw_solution_email.ipl, I found some subroutine has a number of $ sign.e.g.sub Generate_Part($$)sub Send_Email($$$$$)I am a new perl programmer. And would like to know what is the $ sign mean. Thanks!
Prototypes cause far more trouble than they avert. Even when they are properly understood and used correctly, they create code that doesn't behave the way it looks like it ought to, which makes it harder to maintain code that uses them. Furthermore, in OO implementations then engender a completely false sense of security, because they're utterly ignored in any method call.Don't use proptotypes. ...