And you are right, but in perl, you could do this:
print~
<a href="mysite.com">mysite</a>
<a href="mailto:me@asite.com">email</a>
~;
where as in php:
print("
<a href=\"mysite.com\">mysite</a>
<a href=\"mailto:me@asite.com\">email</a>
");
See how much easier it is in perl?