← Back to Explore

goto-named-step

GOTO between named and static steps

goto

Rundown


# Named GOTO Patterns

## Initialize

- PASS: GOTO Cleanup
- FAIL: STOP

Please initialize.

Tests GOTO Name -> Name.

```bash
rd echo "initialize"
```

## Process

- PASS: GOTO 1
- FAIL: STOP

Please process.

Tests GOTO Name -> Static.

```bash
rd echo "process"
```

## 1. Static Step

- PASS: GOTO Cleanup
- FAIL: STOP

Tests GOTO Static -> Name.

```bash
rd echo "static step"
```

## Cleanup

- PASS: COMPLETE
- FAIL: STOP

Target for jumps.

```bash
rd echo "cleanup"
```

Run

Jump from Initialize to Cleanup (Name -> Name)

Initializing...

Initializing...

Step/