← Back to Explore

for-break-retry

Substep BREAK + iteration RETRY — retry fires, then BREAK exits (non-accumulating)

Rundown

# BREAK + Iteration RETRY

Substep BREAK respects iteration-level retry. After retries exhausted, BREAK exits the loop.

## 1. Process items
- FOR i IN 1 TO 3
  - PASS ALL CONTINUE
  - FAIL ANY RETRY 1 BREAK
- PASS ALL CONTINUE
- FAIL ANY STOP

### 1.1 First check
- PASS DEFER
- FAIL DEFER

Check item.

### 1.2 Second check
- PASS DEFER
- FAIL BREAK

Validate item.

## 2. Done
- PASS COMPLETE

All items processed.

Run

Initializing...

Initializing...

Step/2