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)