Loops/For: Difference between revisions

15 bytes removed ,  13 years ago
→‎{{header|Visual Basic}}: a variable should not be highlighted...
(added Clojure version)
(→‎{{header|Visual Basic}}: a variable should not be highlighted...)
Line 868:
Dim ii As Integer
Dim x As Integer
Dim outputout As String
 
output = ""
Line 874:
For i = 1 To 5
For ii = 1 To i
outputout = outputout + "*"
Next ii
Debug.Print (outputout)
outputout = ""
Next i</lang>
 
Anonymous user