> 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/0079.md).

# 0079: Недопустимый параметр в команде Alloc

Первый параметр в [команде](/ru/coding/built-in-commands.md#alloc) `Alloc` не является [глобальной переменной](/ru/coding/variables.md#globalnye-peremennye). Эта команда применяется только к глобальным переменным.

**Возможные решения**: укажите глобальную переменную:

```
Alloc(10@, 10) // ошибка
Alloc($var, 10) // верно
```
