Insert comments : Comments « Language Basics « Perl






Insert comments

   

#!/usr/bin/perl 
print "Content-Type: text/html \n\n"; 
# This is a simple script with comments that explain what the code does. 
# These comments do not affect the way the script works. 
print "Welcome to AUTO!"; # You 
# can even put comments on the same line as executable code. 

   
    
    
  








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.Commenting Your Code
4.Comments are plain text that allow you to insert documentation in your Perl script.
5.Place a # in the middle of a line, and Everything from the # to the end of the line is a comment.