← Back to Explore

for-descending

FOR loop with descending range iterates from high to low

for-loops

Rundown


# FOR Descending

## 1. Count down

- FOR item IN 3 TO 1
- PASS ALL: COMPLETE

### 1.1 Process {{item}}

```bash
rd echo "item={{item}}"
```

Run

Descending range iterates 3, 2, 1

Initializing...

Initializing...

Step/