Notifications
Clear all

[Closed] backward loop

Normally for loop looks like this:

for i=1 to n do (

)

and can be used to iterate an array from the begining to the end, but how to iterate from the end backwards to the begining?

2 Replies

I would be:

for i = n to 1 by -1 do (
)

1 Reply
(@gtafan)
Joined: 1 year ago

Posts: 0

Thanks, will try it.