what is the difference between

print qq|
<html><body></body></html>
|;

vs. the

print "<html>\n";
print "<body>\n";
print "</body>\n";
print "</html>\n";

vs. the

print <<"EndOfText";
<html><body></body></html
EndOfText

do they all do the same thing? or is it better to use one syntax over the 
other?

thanks in advance


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

Reply via email to