Mega Code Archive

 
Categories / Java Tutorial / JSP
 

Multiple Declaration

<%!  int i; %> <%! void foo(){}%> <html>   <body>     <%! int j; %> hello       <%! void bar(){} %>   </body> </html>