|
|
|
|
|
by sliverstorm
4778 days ago
|
|
It's kind of obtuse. If you have to type out "$_", you might as well declare it and give it a good name. I personally have no issues doing: foreach @array {
chomp;
print;
}
But as soon as I have to type "$_" I make a real variable. |
|