program to print hello world using JSP code example
Example: hello world in jsp
<html>
<body>
<%
out.println("Hello World");
%>
</body>
</html>
<html>
<body>
<%
out.println("Hello World");
%>
</body>
</html>