7 lines
98 B
Perl
7 lines
98 B
Perl
#!/usr/bin/perl
|
|
use warnings;
|
|
use strict;
|
|
my $name = "Tom";
|
|
print "My name is $name\n";
|
|
|
|
|