where did the i in programming loops come from code example
Example 1: loops in coding
Do While X <= 5
X = X + 5
Loop
Example 2: loops in coding
Do
Do_Something
Loop
Do While X <= 5
X = X + 5
Loop
Do
Do_Something
Loop