What is the difference between these two constructs in Perl?

Jackie

New member
What is the difference between these two constructs in Perl?
$var = “$filename.$suffix”;
$var = “$filename” . “$suffix”;
 
Back
Top