Mega Code Archive

 
Categories / Perl / String
 

Concatenate two strings

$variable1 = "Hello "; $variable2 = "there\n"; print $variable1 . $variable2;