Ability to break out of 'for'

Currently we cannot break out of a for loop, meaning that to break we must create an empty loop wrapper that iterates only once like this :

loop:
    for(I := 1..10):
        if(SomeCondition?):
            break
    break

Could be great if we could directly do :

for(I := 1..10):
    if(SomeCondition?):
        break

Also, I guess it could be great to be able to break 0 or break 1 (/ n)

@im_a_lama Thank you for your feedback. While I cannot guarantee a response, I can confirm that this has been forwarded to the appropriate team.

Great work-around! Hope this is implemented soon :saluting_face: