#!/usr/bin/perl
print "Content-Type: text/html \n\n";
print "Welcome to ACME AUTO";
This print command prints the words between the quotes to the browser window.
print "Welcome to ACME AUTO";
Remember: For a command string to execute, there must be a semicolon (;) at the end.