6 lines
83 B
Perl
6 lines
83 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
my $name = "Tom";
|
|
print 'My name is $name\n'; |