On Jul 14, 2004, at 2:27 PM, perl.org wrote:
I would like to use them if just for documentation purposes - it is just
slightly more clear to me to see
sub something( $$$ ) {
than
sub something {
In Perl, we write that:
sub something { my($param1, $param2, $etc) = @_;
# .... }
James
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>