Is there any way to make bulk comments in Perl other than the cheesy workarounds I use?
Currently, the only 2 ways I know are:
=ignore
bunch of code...
=cut
or equally as repugnant, something like this:
$comment = qq|
bunch of code...
|;
Why in the heck didn't they use the very common convention from C, C++, PHP, etc. of /* and */ that everyone already knew and used?
Hard to believe they'd leave such a simple thing out of Perl
Am I just missing it?