Initial Revision
[ohcount] / test / src_dir / jsp1.jsp
1 <html> 
2         <head> 
3         <title>JSP page</title> 
4         </head> 
5         <body> 
6                 <%@ page language="java" %> 
7                 <% out.println("Hello World"); %> 
8                 <% // comment 
9                 /*
10                  * more comment
11                  */
12                 %>
13         </body> 
14 </html>