← Back to Explore

goto-step-backward

Jump backward from step 2 to step 1 on failure

goto

Rundown


# GOTO Step Backward

Fail step 2 to jump backward to step 1, then succeed on the second pass.

## 1. Setup

- PASS: CONTINUE
- FAIL: STOP

```bash
rd echo "setup"
```

## 2. Check

- PASS: COMPLETE
- FAIL: GOTO 1

```bash
rd echo "check"
```

Run

Fail step 2, GOTO 1, pass both steps

Initializing...

Initializing...

Step/