duckscriptsdk 0.1.8

The duckscript SDK.
Documentation
```sh
var = set_env key value
```

Sets the environment variable defined by the provided key to the provided value.

#### Parameters

Two arguments are required:

* key - The name of the environment variable to set
* value - The new environment variable value

#### Return Value

true if successful

#### Examples

```sh
set_env HOME /usr/me
```