For in AngelScript
A classic initial/condition/after for loop.
Another way of accomplishing the basic “do this N times” iteration is for with a range-like loop.
for without a condition will loop repeatedly until you break out of the loop.
You can also continue to the next iteration of the loop.
We’ll see some other for forms later when we look at range statements and other data structures.