# chain statement

The chain statement transfers processing
control to TCL, which interprets and executes the statement defined
in the expression.

## Syntax

```
chain tcl.exp
```

## Parameter(s)

| tcl.exp | statement to be executed once control is transferred to TCL. |
| --- | --- |

## Description

When the TCL expression finishes,
control does not return to the program. The chain statement transfers control one way only.

## Example(s)

```
chain "file-save"
chain \off\
```

---
Source: https://d3codex.com/pickbasic-flashbasic/chain-statement/ - part of the D3Codex reference.
