Language Basics Perl

#!/usr/bin/perl 
print "Content-Type: text/html \n\n"; 
# The code below makes it easy to change text output. 
$company_name = "AUTO"; 
$cars_on_lot = 100; 
$deal_of_day = "Ford"; 
print "

Welcome to $company_name!

\n"; 
print "

Which one of our $cars_on_lot cars is right for you?

\n"; 
print "

Today we have a GREAT deal on a $deal_of_day.

\n";