duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
goto :label
```

The goto command enables you to jump to any position in the script, if that position has a label value.

### Parameters

A single valid label value.

### Return Value

None

### Examples

```sh
goto :good

echo bad

:good echo good
```