Instead of a new string literal, I decided to do something closer to the JTP idea. I will have a new statement called an Output Statement that looks like this:
%>1 + 1 = <%=1+1%><%
This can have multiple lines in it, so this also works:
%>
1 + 1 = <%=1+1%>
1 + 2 = <%=1+2%>
<%
Since this is nothing more than a statement, it can be freely mixed with other statement. The difference from JTP is that there is no initial <% or ending %>. But like JTP, this send output to standard out, to the same place that print() sends output.