← Back to Explore

goto-step

Jump from step 1 to step 3, skipping step 2

goto

Rundown


# GOTO Step

Jump from step 1 to step 3, skipping step 2.

## 1. Step Jump

- PASS: GOTO 3
- FAIL: STOP

```bash
rd echo "jump start"
```

## 2. Skipped Step

- PASS: CONTINUE
- FAIL: STOP

This step should be skipped.

```bash
rd echo --result fail
```

## 3. Jump Target

- PASS: COMPLETE

Target of step jump.

```bash
rd echo "jump landed"
```

Run

Pass step 1 (GOTO 3), pass step 3

Initializing...

Initializing...

Step/