Creates a for loop that iterates through a set of numbers with the index
Aliases:
for (int i = 0;1 < 10;1++) { // Your code here}
for i := 0;1 < 10;1++ { // Your code here}
for (let i = 0;1 < 10;1++) { // Your code here}
for (i in 0 until 10) { // Your code here}
for (myi = 0;1 < 10;1++) { # Your code here}
for i = 0;1 < 10;1++) { // Your code here}
for i = 0;1 -lt 10;1++) { # Your code here}
for i in range(10): # Your code here
for (i in 1:10) { # Your code here}
10.times do |i| # Your code hereend
for i in 0..10 { // Your code here}
for (i <- 0 until 10) { // Your code here}
for i in list; do // Your code heredone
for i in 0..<10 { // Your code here}