Link copiato negli appunti
Grazie a questo script è possibile disegnare un triangolo di lato variabile.
<%
function disegna(intLung)
for ctInd=1 to intLung
for ctInd2=1 to ctInd
disegna=disegna & "|"
next
disegna=disegna & "<br>"
next
end function
response.write disegna(10)
%>