If your goal is continuing to the next iteration of the outer loop this works: 
    
    
    for i in 0..<10:
      block innerloop:
        for j in 0..<5:
          if j == 3: break innerloop
    
    
    Run

Reply via email to