6

I know different methods of introducing multi-line comments in Perl. But I want to know why it doesn't have something simpler multi-line comment feature such /* comment */, which would make it much easier.

I currently follow http://www.perlmonks.org/?node_id=560985 to achieve multi-line comments. Are there any plans to include this feature in Perl anytime soon?

4
  • Good point perl is so trivial to read that for each statement you would really need several lines of comments!
    – jdehaan
    Feb 16, 2011 at 5:42
  • s(/[*]){=for comment\n\n}; s([*]/){\n\n=cut\n} Feb 16, 2011 at 5:46
  • @Brad: That will break code like s/\s*/ /g :)
    – bdonlan
    Feb 16, 2011 at 5:50
  • 1
    @bdonlan I was just showing that there already is a way to make multiline comments. Feb 17, 2011 at 14:44

4 Answers 4

12

C-style comments come with a variety of difficult problems, including the inability to comment-out comments. Additionally, convenient syntax for one-line encourages concise writing, which makes your code easier to read. The absence of 10-line "Author: ... Input: ... Output: ... Favorite Color: ..." blocks that you see from time to time in C and C++ is another benefit.

Multi-line comments encourage long writing that is better expressed more concisely or as documentation, so this is what Perl encourages with its # and =pod operators (respectively).

Finally, if you are having trouble with Perl's style of commenting, you should configure your editor to edit programs, not text. In Emacs, if you start writing something like # this is a comment that is getting longer and longer and longer and oh my goodness we are out of space on this line what to do now and type M-q, Emacs will automatically insert the # at the beginning of each line that it creates.

If you just want to comment-out a block of code, then you need look no further than M-x comment-region and M-x uncomment-region, which will comment out the region in pretty-much any language; including Perl.

Don't stress about the syntax of comments; that's the computer's job!

4
  • 1
    I think you mean M-q, not C-q.
    – Sean
    Feb 16, 2011 at 7:01
  • 2
    For those of us on the other side of the Great Editor Holy War, vim is also able to automatically insert # at the beginning of comment lines and will also do so when re-flowing text with gq. Feb 16, 2011 at 12:18
  • -1 for pox on both on your houses! What about Padre solution?
    – DVK
    Feb 16, 2011 at 15:51
  • I still feel that /* */ is exceptionally convenient than # or =pod. It's just not intuitive enough for me, or maybe its my personal choice.
    – Ravikiran
    Feb 17, 2011 at 10:33
6

There was a discussion regarding this on the [email protected] mailing list. Although in the end the discussion was inconclusive, the summary posted here makes for interesting reading.

1
  • yep i have seen that, still can't believe why they wont give it a nod.
    – Ravikiran
    Feb 17, 2011 at 10:38
3

As with any multiline comment structure, there will be a "open" and a "close" comment condition, and that leads to problems with nested comments.

for example, C uses /* as the open and */ as the close. How does a multiline comment system handle comments within comments? C will fail if you try to comment a block that is already commented.

Note that line-based comments (e.g. c++ // comments) do not suffer this problem.

0

Simplicity is in the eye of the beholder. That said, there are already a number of ways to do multi-line comments. First, void string literals:

q{This text won't do anything.
Neither will this.};

This has the unfortunate side effect of triggering a warning:

Useless use of a constant in void context at - line 4.

Another option is using a heredoc in void context - for some reason this doesn't cause a warning:

<<ENDCOMMENT;
Foo comment bar.
ENDCOMMENT

As you can see, the problem isn't the lack of syntax as such (python doc comments look vaugely similar to the q{} method in fact) - it's more just that the community of perl programmers has settled on line comments using # and POD. Using a different method at this point will just confuse people who have to read your code later.

1
  • 8
    Please never do either of these in real code. The goal of code is readability, not "I can't figure out how to use my text editor, so f**k you".
    – jrockway
    Feb 16, 2011 at 5:46

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.