programming-examples/perl/String/Interpolcation inside scalar variable.pl
2019-11-15 12:59:38 +01:00

9 lines
119 B
Perl

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