Codebase list ohcount / upstream/4.0.0+git20210223.6654d48 test / src_dir / jsp1.jsp
upstream/4.0.0+git20210223.6654d48

Tree @upstream/4.0.0+git20210223.6654d48 (Download .tar.gz)

jsp1.jsp @upstream/4.0.0+git20210223.6654d48raw · history · blame

<html> 
	<head> 
	<title>JSP page</title> 
	</head> 
	<body> 
		<%@ page language="java" %> 
		<% out.println("Hello World"); %> 
		<% // comment 
		/*
		 * more comment
		 */
		%>
	</body> 
</html>