duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
var = is_dir path
```

This command will return true/false based if the provided path points to an existing directory.

### Parameters

The path to check.

### Return Value

True if the path points to an existing directory.

### Examples

```sh
existing_dir = is_dir ./dir
```