duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
output = random_text [length]
```

Generates random alphanumeric text with the requested length (length is 1 if not provided).

### Parameters

Optional text length. Length is defaulted to 1 if not provided.

### Return Value

The generated alphanumeric value.

### Examples

```sh
value = random_text 50
echo ${value}
```