> 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-syntax.md).

# ChardScript Syntax

## Quotes

In ChardScript, this programming language only accepts strings with a double quote, not a single quote.

**Example**

{% code lineNumbers="true" %}

```lua
echo("Hello World!")
```

{% endcode %}

ChardScript will give an error if it's like this.

**Example**

Syntax Error:

{% code lineNumbers="true" %}

```actionscript
echo('Hello World!')
```

{% endcode %}
