> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/troubleshooting/errors/0027.md).

# 0027: String is too long

The compiler finds a [string literal](/language/data-types.md#string-literals) that exceeds the length limit.

**Possible solutions:** cut the string to meet the limit or try to use double quotes instead of single quotes:

```
'long text' // error
"long text" // OK
```
