duckscriptsdk 0.1.8

The duckscript SDK.
Documentation
```sh
var = is_defined key
```

Returns true if the provided variable name (not value) exists.

#### Parameters

The variable name.

#### Return Value

True if the variable is defined.

#### Examples

```sh
key = set "hello world"
exists = is_defined key
```