Any line starting with a number sign (#) indicates a comment. : Comments « Language Basics « Perl






Any line starting with a number sign (#) indicates a comment.

   

print "Wow.\n"; #This is a comment.

   
    
    
  








Related examples in the same category

1.A simple Perl program with comments.
2.Commenting Your Code
3.Comments are plain text that allow you to insert documentation in your Perl script.
4.Insert comments
5.Place a # in the middle of a line, and Everything from the # to the end of the line is a comment.