duckscriptsdk 0.11.1

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

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

### Parameters

The path to check.

### Return Value

True if the path points to an existing file.

### Examples

```sh
existing_file = is_file ./dir/somefile.txt
```