#! /usr/local/bin/perl # This example will show the use of single quotes print 'Hello World\n'; #no variable interpolation occurs print "\nHello World\n"; #variable interpolation occurs with double quotes, the \n like C is a newline print 'Hello Good World!';