Commenting Your Code : Comments « Language Basics « Perl






Commenting Your Code

   

#In Perl, you preface comments with a # .
#Perl will ignore all the text on a line after the # symbol. 

# This is the comment.
print "Hello\tfrom\tPerl.\n";

   
    
    
  








Related examples in the same category

1.A simple Perl program with comments.
2.Any line starting with a number sign (#) indicates a comment.
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.