> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Not Equals

> Check whether two values are not strictly equal.

| Input | Type | Required | Description              |
| ----- | ---- | -------- | ------------------------ |
| **A** | Any  | Yes      | First value to compare.  |
| **B** | Any  | Yes      | Second value to compare. |

| Output     | Type    | Description                                    |
| ---------- | ------- | ---------------------------------------------- |
| **Result** | Boolean | `true` when the values are not strictly equal. |

Types matter: the number `1` and the text `"1"` are not equal. Objects and
lists compare by identity.
