EDIT: Note to new Perl programmers: This mechanism should NOT be used for multiline comments! It has a flaw decreases readability.
In this PerlMonks post on mechanisms to produce multiline comments in Perl, Abigail provided this one, that perplexes me:
The problem with just using a here document is that it will issue a warning under '-w'. It's much better to use the little known << >> operator.
<<q=~q>>;
This is a multiline comment.
q
Running it through -M0=Deparse
gives:
" This is a multiline comment.\n" =~ //;
-e syntax OK
Can someone tell me what is going on?
Hah. There is no such thing as a "<< >>" operator. What's going on there is basically equivalent to this:
=~
is, of course, the normal pattern-binding operator you normally use withm//
ors///
. The''
is using the q{} syntax for literal strings, with>
as a delimiter, and is interpreted as a pattern at run-time. The""
is a here-doc withq
as the terminating string.I certainly wouldn't call this a comment though. Consider the output of this program fragment:
Abigail's answer is partly humorous. There is in fact no
<< >>
operator (not in versions of Perl before 5.22), but there is a (not that well-known, I guess)<<
operator. Not the binary shift operator, but the unary here-document (heredoc for short). A simple form of it is:This is, in fact, the “multiline comment” feature underlying Abigail's answer — a multiline string literal. The rest is a bit of somewhat obfuscated Perl.
The bareword or quoted string after
<<
ends the string literal. You can useq
as a bareword:To understand the rest of Abigail's snippet, it helps to rewrite the here-document into a simple string literal:
Ok, now
q>>
is theq
quote-like operator with>
as the delimiter character.q>>
is equivalent to''
(a non-interpolated literal, which happens to be empty). So the string literal is matched against an empty pattern. The result of that matching is ignored anyway, but this clobbers the match result variables ($1
,$&
, etc).The following isn't as pretty, but it results in no executable code.