How can you add two strings together in CGI? like...

Code:
$var1 = "dude";
$var2 = ", where's my car!?";

$var3 = $var1 + $var2;
That'd be the C++ equivilent. How do you do it in CGI?