Example 5-2. examples/scalars/variable_interpolation.pl #!/usr/bin/perl
use strict;
use warnings;
my $name = "Foo";
print "Hello ", $name, " - how are you ?\n";
print "Hello $name - how are you ?\n";
If you are interested in on-site trainings by the author, please
contact me directly.
|