duckscriptsdk 0.1.8

The duckscript SDK.
Documentation
```sh
var = greater_than left right
```

This command returns true/false based on left > right calculation.

#### Parameters

Two numeric values to compare.

#### Return Value

True if first argument is bigger than second argument.

#### Examples

```sh
result = greater_than 2 1.5
```