# Comparison Built-ins

| Function | Description | Meta |
| --- | --- | --- |
| `x == y` | `x == y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is equal to `y`; false otherwise | Wasm |
| `x > y` | `x > y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is greater than `y`; false otherwise | Wasm |
| `x >= y` | `x >= y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is greater or equal to `y`; false otherwise | Wasm |
| `x < y` | `x < y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is less than `y`; false otherwise | Wasm |
| `x <= y` | `x <= y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is less than or equal to `y`; false otherwise | Wasm |
| `x != y` | `x != y`  **Arguments:**  `x` (any)  `y` (any)  **Returns:**  `result` (boolean)  true if `x` is not equal to `y`; false otherwise | Wasm |