##
print qq`
multiple lines and quotes
` ;
####
<%
print <% html_foo>(@args) ;
%>
<% html_foo(@args)
Args: @args
%>
####
>> this is an output!
## similar to:
print "this is an output!\n" ;
####
<%
for ( @names ) {
>>
>> $_
>>
}
%>
####
<%
for ( @names ) {
$html .= <<
. << $_
. <<
}
%>