<! krg jsp HelloWorld Example. File HelloWorld.jsp
<%@ page language="java" %>
<HTML>
<HEAD>
<TITLE>HelloWorld Example</TITLE>
</HEAD>
<BODY>
<P>
<%! // Declaration of class wide instance variables
%> 
 <% 
  out.print ("Hello JSP World <BR>");
  %>
 <%= "Hello from an Expression" %> <BR>
  </P>
  </BODY>
  </HTML>