How to put a Comment in Perl?
Perl code can be commented using # as follows:
#!/usr/bin/perl ######################## # I donot execute. This is comment. ######################## perl "Hello World";
Note, in perl first line carries special significance to the perl program. It always begins with #!, followed by the path to the perl binary/executable. It shows where perl executable is to be found. Perl is an interpreted language and does not compile. Therefore, do not think that first line is a comment, since, it is starting with #.

Recent comments
24 weeks 11 hours ago
24 weeks 4 days ago
24 weeks 4 days ago
24 weeks 6 days ago
25 weeks 4 days ago
27 weeks 5 days ago
30 weeks 5 days ago
33 weeks 4 days ago
34 weeks 2 days ago
35 weeks 1 day ago