programming-examples/perl/String/Variable Interpolation.pl
2019-11-15 12:59:38 +01:00

7 lines
98 B
Perl

#!/usr/bin/perl
use warnings;
use strict;
my $name = "Tom";
print "My name is $name\n";