How can I comment out only part of a line in Perl?
Posted
by Hermann Ingjaldsson
on Stack Overflow
See other posts from Stack Overflow
or by Hermann Ingjaldsson
Published on 2010-05-12T11:06:03Z
Indexed on
2010/05/12
15:04 UTC
Read the original article
Hit count: 240
How do I comment a part of a single line in Perl?
like the following line:
if($clevel==0){#never happends}
i would like to be able to comment that last closing bracket, without going to a new line.
© Stack Overflow or respective owner