|
|
|
|
|
by mercurial
4039 days ago
|
|
In the interest of fairness, and in regards to the "Underscore, a friend indeed", I'll point to the existence of eg, $_ and @_ as built-in Perl magic variables (you can get away with not using $_, but not @_). I have also been know to use _ for a variable I will not use later (eg, if a function returns two values but I'm only interested in one). Additionally, in languages with pattern matching, '_' usually works like '*' and matches everything. |
|