Look at the .jsp source code that you downloaded. View source from the browser will not show you the source.
<%
String strHelloWorld = "Hello World";
%>
<%= "Hello World" %> - see .jsp source code.
<%= strHelloWorld %> - see .jsp source code.
Example loop: for