aspclassiccompiler/aspclassiccompiler/DLRSoft.Examples.ASPWebApp/test/forloop.asp
2020-04-14 14:05:42 +02:00

17 lines
No EOL
159 B
Text

<%
option explicit
%>
<html>
<head>
</head>
<body>
<%
dim i
for i = 1 to 8
response.write i
next
response.write i
%>
</body>
</html>