← Back to Explore
for-iteration-transitions
Iteration-level transitions nested under FOR clause
for-loops
Rundown
# FOR Iteration Transitions
## 1. Process items
- FOR item IN 1 TO 3
- FAIL: CONTINUE
- FAIL ANY: CONTINUE
### 1.1 Check {{item}}
```bash
rd echo --result fail
```
## 2. Done
- PASS: COMPLETE
```bash
rd echo "completed"
``` Run
FAIL CONTINUE per iteration allows loop to complete despite failures
Initializing...
Initializing...
Step—/—