Possible Duplicate:
What are the common workarounds for multi-line comments in Perl?
Hi All,
I am new to Perl and am wondering how to do a multi-line comment.
Possible Duplicate:
What are the common workarounds for multi-line comments in Perl?
Hi All,
I am new to Perl and am wondering how to do a multi-line comment.
I'm just editing my opinion - Perl supports multi-line comments - Ignore rest of this text
Perl doesn't support multi-line comments. You have to start each line with a '#' to comment that line.
#this is a comment
Note: The first line of a perl program is NOT a comment ( it's a directive which locates to the perl executable
#!/usr/local/bin/perl
So finally put, your program may look like this
#!/usr/local/bin/perl
#Program by XYZ created on September 30 2010...
print "Hello World\n";
POD is the official way to do multi line comments in Perl,
From faq.perl.org[perlfaq7]
The quick-and-dirty way to comment out more than one line of Perl is to surround those lines with Pod directives. You have to put these directives at the beginning of the line and somewhere where Perl expects a new statement (so not in the middle of statements like the # comments). You end the comment with =cut, ending the Pod section:
=pod
my $object = NotGonnaHappen->new();
ignored_sub();
$wont_be_assigned = 37;
=cut
The quick-and-dirty method only works well when you don't plan to leave the commented code in the source. If a Pod parser comes along, you're multiline comment is going to show up in the Pod translation. A better way hides it from Pod parsers as well.
The =begin directive can mark a section for a particular purpose. If the Pod parser doesn't want to handle it, it just ignores it. Label the comments with comment. End the comment using =end with the same label. You still need the =cut to go back to Perl code from the Pod comment:
=begin comment
my $object = NotGonnaHappen->new();
ignored_sub();
$wont_be_assigned = 37;
=end comment
=cut