#!/usr/bin/perl -w use strict; my $myString = "Hello world!"; print "$myString\n"; print "The preceding line printed the variable \$myString.\n"; print "This program has run without errors.";