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

# Real

> Real-number type in the FlexiLayout language for floating-point arithmetic and comparison operations against other Real values.

Real number.

## Operators

| Operator                         | Description                                                                                                                                                                 |
| :------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `-`                              | Changes the sign. Unary operator.                                                                                                                                           |
| `+`                              | Adds two real numbers. Binary operator.                                                                                                                                     |
| `-`                              | Subtracts a real number from another real number. Binary operator.                                                                                                          |
| `*`                              | Multiplies two real numbers. Binary operator.                                                                                                                               |
| `/`                              | Divides by a real number. Binary operator.                                                                                                                                  |
| `<`, `<=`, `>`, `>=`, `==`, `!=` | Compare two real numbers: less than, less than or equal to, greater than, greater than or equal to, equal to, not equal to. Binary operators. Return a value of type Logic. |
