Mega Code Archive

 
Categories / Perl / Language Basics
 

Concatenate two scalar variables with double quotes

$a = "Hello"; $b = "there"; $c = "$a $b\n"; print $c;