8 lines
128 B
Perl
8 lines
128 B
Perl
#!/usr/bin/perl
|
|
|
|
$name="Tom";
|
|
|
|
$name .= " and"; # Concatenate string
|
|
print "$name is the girl's version of Dan.\n";
|
|
|
|
|