blob: 7282e3af400da268bfd71273e7dd4fb4a9818803 [file]
<%@ jet package="org.jetTest" class="SimpleGen"%>
public class Simple
{
public void main(String[] args)
{
<%for (int i=1; i <= 20; i++) {%>
System.out.println("The number " + <%=i%> + " is <%=i%2==0?"even":"odd"%>");
<%}%>
}
}