duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
var = lowercase text
```

Converts the provided string into lowercase.

### Parameters

The string to convert.

### Return Value

The converted string.

### Examples

```sh
string = lowercase "Hello World"
assert_eq ${string} "hello world"
```