duckscriptsdk 0.11.1

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

Converts the provided string into camel case.
All non-alphanumeric characters are ignored.

### Parameters

The string to convert.

### Return Value

The converted string.

### Examples

```sh
string = camelcase "hello, world!"
assert_eq ${string} "HelloWorld"
```