use IsisDB module instead of OpenIsis -- this will fix various problems in
[webpac] / openisis / foo.oip
1 #!/opt/openisis/oip
2 <html>
3 <%! int i;
4         static void foo () {
5         /* as an extension over common JSP-behaviour,
6         a global %! block *ending* with !% introduces
7         literal-printing code to be added outside of main
8         */
9 !%>
10         lala
11 <%!
12         }
13 %>
14 <%
15         for ( i=0; i<3; i++ ) {
16 %>
17         bla <%=i%> blub <%="%f",i/3.%> 
18 <%
19         }
20         foo();
21 %>
22 <%!
23  int j;
24 %>
25 </html>