you can do the same with block labels:
    
    
    block myBlock:
      for i in 1..100:
        someaction1(i)
        if somecondition(i):
          break myBlock
        someaction2(i)
      
      echo "No i matches the condition!"
    

So I would say, it doesn't make sense to add support for this syntax

Reply via email to