> 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/ru/troubleshooting/errors/0019.md).

# 0019: Неизвестный тип массива

[Тип массива](/ru/coding/arrays.md#array-declaration) не указан, либо указан неправильно (например, в виде числа).

**Возможные решения**: укажите корректное значение:

```pascal
var $coords: array 10 of Double // ошибка, неизвестный тип
```

```pascal
var $coords: array 10 of Float // верно
```
