> For the complete documentation index, see [llms.txt](https://gamingmod.gitbook.io/chardscript-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gamingmod.gitbook.io/chardscript-docs/chardscript-tutorial/chardscript-operators.md).

# ChardScript Operators

Operators are used to perform operations on variables and values.

In the example below, we use the `+` operator to add together two values:

**Example**

{% code lineNumbers="true" %}

```renpy
echo(2 + 5)
```

{% endcode %}

ChardScript only support 4 Arithmetic Operators:

| Operator | Name           | Example |
| -------- | -------------- | ------- |
| `+`      | Addition       | x + y   |
| `-`      | Subtraction    | x - y   |
| `*`      | Multiplication | x \* y  |
| `/`      | Division       | x / y   |
