Mini-Exercise #4
v
What does this code print?
Dim i As Integer
i = 1
Do While i >= 1
Print i
i = i + 1
loop