9 lines
119 B
Perl
9 lines
119 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my $name = "Tom";
|
|
my $salutation = "Dear $name,";
|
|
print $salutation, "\n";
|
|
|
|
|