in reply to
how to add space between printing strings
print "$first_name $last_name\n";
Perl interpolates the $var names within double quotes in a print.
BTW, a valid var name can not start with a digit. (1st_name is not right).
Comment on
Re: how to add space between printing strings
Download
Code
In Section
Seekers of Perl Wisdom