programming-examples/perl/String/Variable Interpolation.pl

7 lines
98 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl
use warnings;
use strict;
my $name = "Tom";
print "My name is $name\n";