String Perl

#!/usr/bin/perl -w
use strict;
my $name = "Tom";
my $salutation = "Dear $name,";
print $salutation, "\n";