Please explain what exactly the difference of $_ and @_ is in Perl.
When to use which, given by example code.
|
|
|||||||||||
|
|
When in a subroutine, the array
The output is
The scalar
The output is:
Likewise, we could have slightly rewritten the subroutine
or even as the more compact
The variable
which, of course, outputs Take a look at |
|||||
|
|
Jack Maney's reply covers your exact question, but I also wanted to note something: you shouldn't be fooled by just the name portion of the variable. The sigal matters, as well. |
|||
|
|
One commonly seen example had to do with I/O. This code...
...is functionally equivalent to this code.
Any time you have a loop the
...is functionally equivalent to this code.
One thing to keep in mind with |
|||||
|
|
Neither The reason
The reason
|
|||||||||||||
|