> For the complete documentation index, see [llms.txt](https://standardlib.naymmm.lol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://standardlib.naymmm.lol/compatibility.md).

# Compatibility

Miscellaneous functions to ensure compatibility.

{% hint style="info" %}
These functions are to maximize compatibility.
{% endhint %}

```lua
-- Import the executor library.
local comp = require("@lib/compatibility")
```

## unc(sunc: bool?)

Runs a UNC, sUNC if provided. This is mainly for compatibility reasons and testing, you do not need to implement this.

```lua
-- Example
comp.unc(true) -- Starts an sUNC test
comp.unc() -- Starts a regular UNC test
```
