# equality.sprak
Library for testing data equality.

## Functions
### `equal_array`
Determines if both inputs are equal to each other
#### Type
`array -> array -> bool`
#### Arguments
* `first`: Input to compare with `second`.
* `second`: Input to compare with `first`.
#### Examples
```sprak
# TODO
```

### `equal`
Determines if both inputs are equal to each other
#### Type
`var -> var -> bool`
#### Arguments
* `first`: Input to compare with `second`.
* `second`: Input to compare with `first`.
#### Examples
```sprak
Print(equal(true, true))
array a = []
a[1] = 1
a[0] = 0
Print(equal([0, 1], a)[1])
Print(!equal(true, false)[1])
array b = []
Append(b, [0])
array c = []
Append(c, b[0])
Print(!equal(b, b)[0])
```