Language Basics Perl

#!/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.