| Revision 237 (by dpavlin, 2004/03/08 17:43:12) |
|---|
#!/opt/openisis/oip
<html>
<%! int i;
static void foo () {
/* as an extension over common JSP-behaviour,
a global %! block *ending* with !% introduces
literal-printing code to be added outside of main
*/
!%>
lala
<%!
}
%>
<%
for ( i=0; i<3; i++ ) {
%>
bla <%=i%> blub <%="%f",i/3.%>
<%
}
foo();
%>
<%!
int j;
%>
</html>