In my past life I always used parentheses for print statements, like this:
print ($test_String);
Yesterday I read that parentheses aren’t necessary, and I tested to see that it’s true. This works just fine:
print $test_String;
So, is there ever a time when parentheses are necessary for print or echo? And if I use them regardless, is that a problem, or looked down on these days?