duckscriptsdk 0.11.1

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

Converts the provided string into uppercase.

### Parameters

The string to convert.

### Return Value

The converted string.

### Examples

```sh
string = uppercase "Hello World"
assert_eq ${string} "HELLO WORLD"
```